aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/theme/_code.scss
blob: d825933540ad41cf6ee4abc388a1efdad9d8ba5e (plain) (blame)
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
@import 'utilities/borderradius';

code {
  background: $color-tertiary;
  font-size: 86%;
  margin: 0 .2rem;
  padding: .2rem .5rem;
  white-space: nowrap;

  @include border-radius(.4rem);
}

pre {
  background: $color-tertiary;
  border-left: .3rem solid $color-primary;
  overflow-x: auto;

  & > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;

    @include border-radius(0);
  }
}