diff options
| author | shpuld <shpuld@gmail.com> | 2017-02-24 17:32:41 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-02-24 17:32:41 +0200 |
| commit | 9dfcf8a301c37b359cf18880732ad63b413ce63e (patch) | |
| tree | c5ce6f4bbc7cd162553d088079a6f470ce87f3e4 /src/components/login_form/login_form.vue | |
| parent | e0e507348cc22054e55e2be8fa6544845f597610 (diff) | |
Align attachments with usercard, make buttons use theme colors, prettify login form, more border radii adjustment for consistency.
Diffstat (limited to 'src/components/login_form/login_form.vue')
| -rw-r--r-- | src/components/login_form/login_form.vue | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue index c0169a08..47495a48 100644 --- a/src/components/login_form/login_form.vue +++ b/src/components/login_form/login_form.vue @@ -5,7 +5,7 @@ Log in </div> <div class="panel-body"> - <form v-on:submit.prevent='submit(user)'> + <form v-on:submit.prevent='submit(user)' class='login-form'> <div class='form-group'> <label for='username'>Username</label> <input :disabled="loggingIn" v-model='user.username' class='form-control' id='username' placeholder='e.g. lain'> @@ -15,7 +15,7 @@ <input :disabled="loggingIn" v-model='user.password' class='form-control' id='password' type='password'> </div> <div class='form-group'> - <button :disabled="loggingIn" type='submit' class='btn btn-default'>Submit</button> + <button :disabled="loggingIn" type='submit' class='btn btn-default base05 base01-background'>Submit</button> </div> </form> </div> @@ -23,3 +23,21 @@ </template> <script src="./login_form.js" ></script> + +<style lang="scss"> + +.login-form { + input { + border-width: 1px; + border-style: solid; + border-radius: 5px; + padding: 0.2em; + } + + .btn { + margin-top: 0.5em; + min-height: 28px; + } +} + +</style> |
