cordis/client/webapp/styles/buttons.scss

15 lines
236 B
SCSS
Raw Normal View History

2021-10-31 19:02:26 +00:00
@import "theme.scss";
/* Buttons */
.button {
background-color: $brand;
color: $header-primary;
border-radius: 4px;
padding: 8px 24px;
cursor: pointer;
&:hover {
2021-11-02 04:29:24 +00:00
background-color: $brand-hover;
2021-10-31 19:02:26 +00:00
}
}