diff options
| author | Henry Jameson <me@hjkos.com> | 2019-05-13 21:54:25 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-05-13 21:54:25 +0300 |
| commit | addeb852200688170654d9bd687de75bc5d30a85 (patch) | |
| tree | d2b38f46a009c2604988a0a4b398bbdabcfe141c /src/components/login_form | |
| parent | 750dca4a108bc296afa1586e0d414d3f48bc8032 (diff) | |
fix prod build
Diffstat (limited to 'src/components/login_form')
| -rw-r--r-- | src/components/login_form/login_form.vue | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue index 27a8e48a..c6be2e00 100644 --- a/src/components/login_form/login_form.vue +++ b/src/components/login_form/login_form.vue @@ -50,6 +50,10 @@ @import '../../_variables.scss'; .login-form { + display: flex; + flex-direction: column; + padding: 0.6em; + .btn { min-height: 28px; width: 10em; @@ -66,9 +70,30 @@ align-items: center; justify-content: space-between; } -} -.login { + .form-group { + display: flex; + flex-direction: column; + padding: 0.3em 0.5em 0.6em; + line-height:24px; + } + + .form-bottom { + display: flex; + padding: 0.5em; + height: 32px; + + button { + width: 10em; + } + + p { + margin: 0.35em; + padding: 0.35em; + display: flex; + } + } + .error { text-align: center; |
