Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_clearfix.scss « mixins « bootstrap « sass « assets - github.com/spech66/bootstrap-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffc62bb285df049f1957dfa4088592b07728c7a0 (plain)
1
2
3
4
5
6
7
8
9
// scss-docs-start clearfix
@mixin clearfix() {
  &::after {
    display: block;
    clear: both;
    content: "";
  }
}
// scss-docs-end clearfix