aboutsummaryrefslogtreecommitdiff
path: root/src/components/login_form
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-04-01 22:07:25 +0300
committerHenry Jameson <me@hjkos.com>2018-04-07 16:40:08 +0300
commit33b1d85921e326e0d81c4bf1a6fa02fec2cbbd5c (patch)
tree5d9be56fec6a1ee239955ab65dac3050a3cda4d9 /src/components/login_form
parentacdb5e5c7a2dac1908a5daafd94c31bc116a1799 (diff)
border-radii moved to variables, made rgbo colors use theme data, customizable
from settings screen.
Diffstat (limited to 'src/components/login_form')
-rw-r--r--src/components/login_form/login_form.vue10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue
index 82000d6b..ac492262 100644
--- a/src/components/login_form/login_form.vue
+++ b/src/components/login_form/login_form.vue
@@ -34,21 +34,17 @@
@import '../../_variables.scss';
.login-form {
- input {
- border-radius: 5px;
- padding: 0.1em 0.2em 0.2em 0.2em;
- }
-
.btn {
min-height: 28px;
width: 10em;
}
.error {
- border-radius: 5px;
+ border-radius: $fallback--tooltipRadius;
+ border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
text-align: center;
background-color: rgba(255, 48, 16, 0.65);
- background-color: $fallback--cRed;
+ background-color: $fallback--cRed;
min-height: 28px;
line-height: 28px;
}