diff --git a/frontend/resources/locales.json b/frontend/resources/locales.json index 4c738a553..03a99adc6 100644 --- a/frontend/resources/locales.json +++ b/frontend/resources/locales.json @@ -26,6 +26,15 @@ "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" : { "used-in" : [ "src/app/main/ui/auth/register.cljs:33" ], "translations" : { diff --git a/frontend/resources/styles/main/layouts/login.scss b/frontend/resources/styles/main/layouts/login.scss index 601b2a9d8..9442c515e 100644 --- a/frontend/resources/styles/main/layouts/login.scss +++ b/frontend/resources/styles/main/layouts/login.scss @@ -52,11 +52,15 @@ background-color: $color-white; .form-container { - width: 368px; + width: 412px; .btn-ocean { margin-top: $x-big; } + + form { + margin: 2rem 0; + } } .btn-google-auth { diff --git a/frontend/resources/styles/main/partials/sidebar-align-options.scss b/frontend/resources/styles/main/partials/sidebar-align-options.scss index 9688ba574..7b9750426 100644 --- a/frontend/resources/styles/main/partials/sidebar-align-options.scss +++ b/frontend/resources/styles/main/partials/sidebar-align-options.scss @@ -8,7 +8,7 @@ .align-options { display: flex; border-bottom: solid 1px $color-gray-60; - height: 37px; + height: 40px; padding: 0 $x-small; .align-group { @@ -22,7 +22,9 @@ } .align-button { + align-items: center; cursor: pointer; + display: flex; padding: $small $x-small; svg { height: 16px; diff --git a/frontend/resources/styles/main/partials/sidebar-assets.scss b/frontend/resources/styles/main/partials/sidebar-assets.scss index a99b426fb..8917dfaed 100644 --- a/frontend/resources/styles/main/partials/sidebar-assets.scss +++ b/frontend/resources/styles/main/partials/sidebar-assets.scss @@ -118,7 +118,7 @@ .asset-group { background-color: $color-gray-60; padding: $small; - font-size: $fs11; + font-size: $fs12; color: $color-gray-20; /* TODO: see if this is useful, or is better to leave only one scroll bar in the whole sidebar @@ -236,8 +236,8 @@ .group-list-item { display: flex; align-items: center; - margin-top: $x-small; - font-size: $fs11; + margin-top: $small; + font-size: $fs12; color: $color-white; cursor: pointer; diff --git a/frontend/src/app/main/ui/auth/login.cljs b/frontend/src/app/main/ui/auth/login.cljs index dc7bc5054..051440d92 100644 --- a/frontend/src/app/main/ui/auth/login.cljs +++ b/frontend/src/app/main/ui/auth/login.cljs @@ -125,7 +125,7 @@ [:span (t locale "auth.register") " "] [:a {:on-click #(st/emit! (rt/nav :auth-register)) :tab-index "6"} - (t locale "auth.register")]]] + (t locale "auth.register-submit")]]] (when cfg/google-client-id [:a.btn-ocean.btn-large.btn-google-auth @@ -144,4 +144,4 @@ [:span (t locale "auth.create-demo-profile") " "] [:a {:on-click #(st/emit! da/create-demo-profile) :tab-index "6"} - (t locale "auth.create-demo-profile")]]]]]) + (t locale "auth.create-demo-account")]]]]])