Theming for schedule
This commit is contained in:
parent
cd7a898e66
commit
1cfe5a4190
14 changed files with 232 additions and 5 deletions
|
@ -5,6 +5,20 @@
|
|||
}
|
||||
}
|
||||
|
||||
// Desktop size breakpoint 900px.
|
||||
@mixin media-large {
|
||||
@media screen and (min-width: 56.25rem) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// Wide Desktop size breakpoint 1200px.
|
||||
@mixin media-wide {
|
||||
@media screen and (min-width: 75rem) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin button {
|
||||
background: $dcb-blue;
|
||||
border: 0;
|
||||
|
|
Reference in a new issue