Files
boxes/_sass/bootstrap-4.6.0/mixins/_clearfix.scss
Thomas Jensen c049484e4c Update website design
- Updated frameworks for better browser support
- Improved responsive design
- Versioned documentation
- Better social media support via the Jekyll SEO plugin
- New looks, fwiw
- Start page has some more relevant info
- Documentation sorted to be more easily accessible
- Internally upgraded from plain CSS to SASS
2021-05-26 21:13:21 +02:00

8 lines
93 B
SCSS

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