mirror of
https://github.com/penpot/penpot.git
synced 2025-02-15 11:38:24 -05:00
add new UI changes
This commit is contained in:
parent
b8e47c87ba
commit
fd12724108
5 changed files with 22 additions and 7 deletions
|
@ -26,6 +26,15 @@
|
||||||
"es" : "¿Quieres probar?"
|
"es" : "¿Quieres probar?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"auth.create-demo-account" : {
|
||||||
|
"used-in" : [ "src/app/main/ui/auth/login.cljs:144", "src/app/main/ui/auth/login.cljs:147", "src/app/main/ui/auth/register.cljs:133", "src/app/main/ui/auth/register.cljs:136" ],
|
||||||
|
"translations" : {
|
||||||
|
"en" : "Create demo account",
|
||||||
|
"fr" : "Vous voulez juste essayer?",
|
||||||
|
"ru" : "Хотите попробовать?",
|
||||||
|
"es" : "Crear cuanta de prueba"
|
||||||
|
}
|
||||||
|
},
|
||||||
"auth.demo-warning" : {
|
"auth.demo-warning" : {
|
||||||
"used-in" : [ "src/app/main/ui/auth/register.cljs:33" ],
|
"used-in" : [ "src/app/main/ui/auth/register.cljs:33" ],
|
||||||
"translations" : {
|
"translations" : {
|
||||||
|
|
|
@ -52,11 +52,15 @@
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
|
|
||||||
.form-container {
|
.form-container {
|
||||||
width: 368px;
|
width: 412px;
|
||||||
|
|
||||||
.btn-ocean {
|
.btn-ocean {
|
||||||
margin-top: $x-big;
|
margin-top: $x-big;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 2rem 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-google-auth {
|
.btn-google-auth {
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
.align-options {
|
.align-options {
|
||||||
display: flex;
|
display: flex;
|
||||||
border-bottom: solid 1px $color-gray-60;
|
border-bottom: solid 1px $color-gray-60;
|
||||||
height: 37px;
|
height: 40px;
|
||||||
padding: 0 $x-small;
|
padding: 0 $x-small;
|
||||||
|
|
||||||
.align-group {
|
.align-group {
|
||||||
|
@ -22,7 +22,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.align-button {
|
.align-button {
|
||||||
|
align-items: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
padding: $small $x-small;
|
padding: $small $x-small;
|
||||||
svg {
|
svg {
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
.asset-group {
|
.asset-group {
|
||||||
background-color: $color-gray-60;
|
background-color: $color-gray-60;
|
||||||
padding: $small;
|
padding: $small;
|
||||||
font-size: $fs11;
|
font-size: $fs12;
|
||||||
color: $color-gray-20;
|
color: $color-gray-20;
|
||||||
/* TODO: see if this is useful, or is better to leave only
|
/* TODO: see if this is useful, or is better to leave only
|
||||||
one scroll bar in the whole sidebar
|
one scroll bar in the whole sidebar
|
||||||
|
@ -236,8 +236,8 @@
|
||||||
.group-list-item {
|
.group-list-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: $x-small;
|
margin-top: $small;
|
||||||
font-size: $fs11;
|
font-size: $fs12;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
|
@ -125,7 +125,7 @@
|
||||||
[:span (t locale "auth.register") " "]
|
[:span (t locale "auth.register") " "]
|
||||||
[:a {:on-click #(st/emit! (rt/nav :auth-register))
|
[:a {:on-click #(st/emit! (rt/nav :auth-register))
|
||||||
:tab-index "6"}
|
:tab-index "6"}
|
||||||
(t locale "auth.register")]]]
|
(t locale "auth.register-submit")]]]
|
||||||
|
|
||||||
(when cfg/google-client-id
|
(when cfg/google-client-id
|
||||||
[:a.btn-ocean.btn-large.btn-google-auth
|
[:a.btn-ocean.btn-large.btn-google-auth
|
||||||
|
@ -144,4 +144,4 @@
|
||||||
[:span (t locale "auth.create-demo-profile") " "]
|
[:span (t locale "auth.create-demo-profile") " "]
|
||||||
[:a {:on-click #(st/emit! da/create-demo-profile)
|
[:a {:on-click #(st/emit! da/create-demo-profile)
|
||||||
:tab-index "6"}
|
:tab-index "6"}
|
||||||
(t locale "auth.create-demo-profile")]]]]])
|
(t locale "auth.create-demo-account")]]]]])
|
||||||
|
|
Loading…
Add table
Reference in a new issue