refactor: use native button

This commit is contained in:
Carlos Valente
2025-02-22 08:51:46 +01:00
committed by Carlos Valente
parent f76c0d1a6d
commit ba74622569
3 changed files with 44 additions and 5 deletions
@@ -0,0 +1,26 @@
.subtle {
aspect-ratio: 1;
height: 2rem;
height: 2rem;
display: grid;
place-content: center;
background: $gray-1050;
color: $blue-400;
border: 1px solid transparent;
border-radius: 3px;
&:hover:not(:disabled):not(:active) {
background: $gray-1000;
color: $blue-500;
}
&:active {
background: $gray-1100;
border-color: $gray-1250;
}
&:disabled {
background: $gray-1050;
}
}