aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/theme/_code.scss
blob: 81467394de9b968ec796ff1ba228369a88fa7231 (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 borderradius(.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 borderradius(0);
  }
}