Fix outline color in light-mode

This commit is contained in:
Andras Schmelczer 2022-09-25 10:38:55 +02:00
parent 77a9bcdddf
commit 674cf4223b
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E

View file

@ -13,10 +13,6 @@
color: var(--accent-color); color: var(--accent-color);
} }
:focus:not(:hover) {
outline: var(--very-light-text-color) solid 3px !important;
}
h1, h1,
.placeholder { .placeholder {
@include title-font(); @include title-font();
@ -44,6 +40,12 @@
margin-top: var(--line-height); margin-top: var(--line-height);
} }
@include on-small-screen {
:focus:not(:hover) {
outline: var(--very-light-text-color) solid 3px !important;
}
}
@include on-large-screen { @include on-large-screen {
$img-size: 190px; $img-size: 190px;