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

_helpers.scss « base « sass « assets - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 808f3772f5264c57c9c303eeed028fc9960d5852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.clearfix::after {
  clear: both;
  content: '';
  display: table;
}

.capitalize {
  text-transform: capitalize;
}

.hide {
  display: none;
}

.grow {
  @include flex-grow(1);
}

.flexbox {
  @include flexbox();
}