From 57224d228a1b1ee2781cbf61b7bd49f429ddf244 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Wed, 2 Oct 2019 16:46:10 +0200 Subject: [PATCH] Style default layout, style login --- .../components/profile/PasswordChangeForm.vue | 31 ---------------- client/src/layouts/PublicLayout.vue | 7 +++- client/src/pages/login.vue | 35 ++----------------- client/src/styles/_password_forms.scss | 30 ++++++++++++++++ client/src/styles/main.scss | 1 + 5 files changed, 40 insertions(+), 64 deletions(-) create mode 100644 client/src/styles/_password_forms.scss diff --git a/client/src/components/profile/PasswordChangeForm.vue b/client/src/components/profile/PasswordChangeForm.vue index 98749d10..f462abee 100644 --- a/client/src/components/profile/PasswordChangeForm.vue +++ b/client/src/components/profile/PasswordChangeForm.vue @@ -82,35 +82,4 @@ } } - .sbform-input { - - margin-bottom: 20px; - font-family: $sans-serif-font-family; - - &__label { - margin-bottom: 10px; - display: inline-block; - } - - &__input { - width: 100%; - - &--error { - border-color: $color-error; - } - } - - &__error { - margin-top: 10px; - color: $color-error; - display: inline-block; - } - - &__hint { - margin-top: $small-spacing; - font-family: $sans-serif-font-family; - color: $color-silver-dark; - } - } - diff --git a/client/src/layouts/PublicLayout.vue b/client/src/layouts/PublicLayout.vue index 82ee90a3..9ce691b3 100644 --- a/client/src/layouts/PublicLayout.vue +++ b/client/src/layouts/PublicLayout.vue @@ -1,5 +1,5 @@