You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
309 B
17 lines
309 B
@mixin button-background($background, $highlight) {
|
|
background: $background;
|
|
background-image:
|
|
linear-gradient($highlight 50%, transparent 50%, transparent);
|
|
}
|
|
|
|
@mixin field-margin($margin) {
|
|
margin: $margin 0;
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|