17 lines
186 B
SCSS
17 lines
186 B
SCSS
@use "./style/bar";
|
|
@use "./style/wal";
|
|
|
|
* {
|
|
all: unset;
|
|
transition: 120ms linear;
|
|
}
|
|
|
|
button {
|
|
padding: 6px;
|
|
border-radius: 12px;
|
|
|
|
&:hover {
|
|
background: wal.$color1;
|
|
}
|
|
}
|