22 lines
319 B
SCSS
22 lines
319 B
SCSS
.button {
|
|
background: none;
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 2px;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 2px var(--color47);
|
|
outline: none;
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.6;
|
|
cursor: default;
|
|
}
|
|
}
|