summaryrefslogtreecommitdiff
path: root/src/sass/_bootstrap.sass
blob: 4fbcb1cf598f9714323a5fcd8de20b0ce3418226 (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
@import "_variables.sass";

h1, h2, h3
  font-family: $font-family-big

h1
  font-size: 3em

h2
  font-size: 2em

@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

.toast-header
  padding-bottom: 0
  margin-bottom: 0