12 lines
211 B
SCSS
12 lines
211 B
SCSS
|
%toggle-button {
|
||
|
border-radius: $radius-small;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
%toggle-button:hover,
|
||
|
%toggle-button:focus {
|
||
|
background-color: $ui-gray-050;
|
||
|
}
|
||
|
%toggle-button:active {
|
||
|
background-color: $ui-gray-100;
|
||
|
}
|