sass-references/angular-material/material/core/style/_layout-common.scss

9 lines
178 B
SCSS
Raw Normal View History

2024-12-06 10:42:08 +08:00
// This mixin ensures an element spans to fill the nearest ancestor with defined positioning.
@mixin fill {
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
}