16 lines
166 B
SCSS
16 lines
166 B
SCSS
.btn {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
color: $grey;
|
|
}
|
|
|
|
&:active {
|
|
box-shadow: 0 0 0.1em $grey;
|
|
}
|
|
|
|
}
|
|
|