summaryrefslogtreecommitdiff
path: root/src/sass/_bootstrap.sass
blob: 755ffb1076211abe5fe15c33ceb80ecd1c91298d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@import "_variables.sass";

h1
  font-family: $font-family-big

@mixin breakpoint($point)
  @if $point == desktop
    @media (min-width: 70em)
      @content
  @else if $point == laptop
    @media (min-width: 64em)
      @content
  @else if $point == tablet
    @media (max-width: 1280px)
      @content
  @else if $point == phablet
    @media (max-width: 1000px)
      @content
  @else if $point == mobileonly
    @media (max-width: 768px)
      @content