mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-14 16:20:03 +00:00
Adds ability for sections to span multiple rows or cols, and refactored section meta
This commit is contained in:
@@ -38,3 +38,19 @@ $extra-large: 2800px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@mixin tablet-up {
|
||||
@media (min-width: #{$small}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin laptop-up {
|
||||
@media (min-width: #{$medium}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin monitor-up {
|
||||
@media (min-width: #{$large}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user