mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05: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
|