mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-03 10:14:47 +00:00
7 lines
167 B
SCSS
7 lines
167 B
SCSS
// scss-docs-start mixin-color-scheme
|
|
@mixin color-scheme($name) {
|
|
@media (prefers-color-scheme: #{$name}) {
|
|
@content;
|
|
}
|
|
}
|
|
// scss-docs-end mixin-color-scheme
|