mirror of
https://github.com/minio/docs.git
synced 2025-07-06 20:36:50 +03:00
18 lines
286 B
SCSS
18 lines
286 B
SCSS
// Get theme colors
|
|
@function breakpoints($key) {
|
|
@return map-get($breakpoints, $key);
|
|
}
|
|
|
|
|
|
// Breakpoints
|
|
@mixin breakpoint-min($bp) {
|
|
@media (min-width: $bp) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin breakpoint-max($bp) {
|
|
@media (max-width: ($bp - 1)) {
|
|
@content;
|
|
}
|
|
} |