15 lines
236 B
SCSS
15 lines
236 B
SCSS
@import "theme.scss";
|
|
|
|
/* Buttons */
|
|
.button {
|
|
background-color: $brand;
|
|
color: $header-primary;
|
|
border-radius: 4px;
|
|
padding: 8px 24px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: $brand-hover;
|
|
}
|
|
}
|