13 lines
256 B
SCSS
13 lines
256 B
SCSS
|
button {
|
||
|
cursor: pointer;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
appearance: none;
|
||
|
-webkit-appearance: none;
|
||
|
border: none;
|
||
|
background: transparent;
|
||
|
color: $font-base-color;
|
||
|
font-family: $font-base-family;
|
||
|
font-size: $font-base-size;
|
||
|
line-height: 1;
|
||
|
}
|