24 lines
378 B
SCSS
24 lines
378 B
SCSS
.button{
|
|
border-radius: 12px;
|
|
background: var(--background);
|
|
padding: 3px 10px;
|
|
cursor: pointer;
|
|
filter: brightness(97%);
|
|
border: none;
|
|
font-size: 14px;
|
|
min-height: 27px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
&:focus {
|
|
filter: brightness(94%);
|
|
}
|
|
|
|
&:hover {
|
|
filter: brightness(94%);
|
|
}
|
|
&.active {
|
|
filter: brightness(74%);
|
|
}
|
|
}
|