mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Don't restrict the accent colour by declaring as the subscription input border color and instead use the text color for that, and set a yellow as the default accent
This commit is contained in:
parent
d2c7da70d3
commit
68e78d2853
2 changed files with 2 additions and 2 deletions
2
resources/assets/sass/_var.scss
vendored
2
resources/assets/sass/_var.scss
vendored
|
@ -24,7 +24,7 @@ $container-max-widths: (
|
||||||
$c-text: #111; // text
|
$c-text: #111; // text
|
||||||
$c-text-light: #fff; // light text
|
$c-text-light: #fff; // light text
|
||||||
$c-base: #2e2e2e; // base
|
$c-base: #2e2e2e; // base
|
||||||
$c-accent: #000; // accent
|
$c-accent: #d4d72e; // accent
|
||||||
$c-error: #f00; // error
|
$c-error: #f00; // error
|
||||||
|
|
||||||
// Values
|
// Values
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
width: calc(100% - 10px);
|
width: calc(100% - 10px);
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
border: 1px solid lighten($c-accent, 50%);
|
border: 1px solid $c-text;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: border-color $trans-speed;
|
transition: border-color $trans-speed;
|
||||||
|
|
Loading…
Reference in a new issue