14 lines
202 B
SCSS
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;
|
|
}
|
|
}
|