mirror of
https://github.com/danbee/julep
synced 2025-03-04 08:59:10 +00:00
14 lines
285 B
SCSS
14 lines
285 B
SCSS
// Set appropriate padding on content.
|
|
// This is to leave space for the header and the tab bar.
|
|
@mixin content($args...) {
|
|
padding: 0;
|
|
@each $arg in $args {
|
|
@if $arg == header {
|
|
padding-top: 2.5em;
|
|
}
|
|
@if $arg == tabbar {
|
|
padding-bottom: 3.5em;
|
|
}
|
|
}
|
|
}
|