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

_clearfix.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0ae125f3d46a618f031df27a2db57ffe9f778d3 (plain)
1
2
3
4
5
6
7
@mixin clearfix() {
  &::after {
    content: "";
    display: table;
    clear: both;
  }
}