dodano pole do ukrywania szlaków

This commit is contained in:
2024-01-03 17:09:09 +01:00
parent 39d6213e4f
commit 97bc6db1c4
8 changed files with 214 additions and 129 deletions
+17 -4
View File
@@ -96,7 +96,7 @@ button {
outline: none;
border: none;
background-color: #0066ff;
background-color: #3c5a89;
color: white;
padding: 0.5em 0.5em;
@@ -107,13 +107,26 @@ button {
cursor: pointer;
transition: all 75ms;
&:hover:not([data-disabled='true']),
&:focus-visible {
outline: 1px solid gold;
background-color: lighten($color: #3c5a89, $amount: 10%);
}
&[data-disabled='true'] {
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
color: #999;
}
&.btn--icon {
background-color: transparent;
padding: 0;
}
&:hover,
&:focus-visible {
background-color: lighten($color: #0066ff, $amount: 10%);
outline: 1px solid gold;
}
}