This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/themes/dcb2017/sass/base/_mixins.scss
2017-03-31 12:22:46 +01:00

14 lines
202 B
SCSS

@mixin button {
background: $dcb-blue;
border: 0;
color: white;
font-weight: bold;
padding: 0.5rem 1rem;
text-transform: uppercase;
&:hover,
&:focus {
background: $dcb-green;
}
}