Omphaloskepsis-2/assets/css/components/_button.scss

19 lines
274 B
SCSS
Raw Normal View History

2025-01-04 20:22:41 +01:00
.label--button {
2025-05-09 18:47:23 +02:00
cursor: pointer;
display: block;
inline-size: fit-content;
margin-inline: auto;
2025-01-04 20:22:41 +01:00
}
.button {
2025-05-09 18:47:23 +02:00
border: 2px solid $dark;
background-color: $light;
padding: 0.4em 1em;
cursor: pointer;
2025-01-04 20:22:41 +01:00
2025-05-09 18:47:23 +02:00
&:hover,
&:focus {
box-shadow: 2px 2px gray;
}
2025-01-04 20:22:41 +01:00
}