Files
natascha-rieter-nl/user/plugins/problems/scss/mixins/_clearfix.scss
T
m038 d76d8ac7b7 Add problems plugin v3.0.0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 23:42:54 +02:00

9 lines
111 B
SCSS

// Clearfix mixin
@mixin clearfix() {
&::after {
clear: both;
content: "";
display: table;
}
}