mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
22 lines
277 B
SCSS
22 lines
277 B
SCSS
@import "./config.scss";
|
|
|
|
@mixin b($block) {
|
|
$B: $namespace + "-" + $block;
|
|
|
|
.#{$B} {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin detachedContentWrapper {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
@mixin detachedContent {
|
|
position: fixed;
|
|
} |