Zelda64Recomp/assets/scss/styles/components/Button.scss

37 lines
720 B
SCSS
Raw Normal View History

2024-01-07 16:33:22 -05:00
@use 'sass:color';
2024-01-06 19:04:28 -05:00
.button {
@extend %label-md;
display: block;
2024-01-07 16:33:22 -05:00
padding: 16dp 20dp;
background-color: rgba($color-primary-d, 0.8);
2024-01-06 19:04:28 -05:00
color: $color-text;
2024-01-07 16:33:22 -05:00
border-radius: $border-radius-md;
width: auto;
height: auto;
2024-01-06 19:04:28 -05:00
&:not([disabled]) {
@extend %nav-all;
}
&:focus {
2024-01-07 16:33:22 -05:00
// color: $color-primary-l;
background-color: $color-primary-d;
2024-01-06 19:04:28 -05:00
}
&:disabled,&[disabled] {
opacity: 0.5;
color: $color-text-inactive;
}
&:active {
2024-01-07 16:33:22 -05:00
background-color: color.scale($color-primary-d, $lightness: -10%);
color: color.scale($color-text, $lightness: 20%);
2024-01-07 16:33:22 -05:00
}
&__label {
width: auto;
height: auto;
2024-01-06 19:04:28 -05:00
}
}