11 lines
265 B
SCSS
11 lines
265 B
SCSS
button {
|
|
border-radius: $bar-module-border-radius;
|
|
padding: 0px 10px;
|
|
|
|
color: $module-button-fg-color;
|
|
background-color: $module-button-bg-color;
|
|
&:hover {
|
|
background-color: rgba($module-button-bg-color,0.7);
|
|
}
|
|
transition: all $transition-time;
|
|
}
|