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: e25282af5007812bfbe81484d23753c47719aeea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.clearfix::after {
  clear: both;
  content: '';
  display: table;
}

.capitalize {
  text-transform: capitalize;
}

.hide {
  display: none;
}

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

.flexbox {
  @include flexbox();
}

.jc-center {
  @include justify-content(center);
}

.ai-center {
  @include align-items(center);
}

.flex-wrap {
  @include flex-wrap(wrap);
}