summaryrefslogtreecommitdiff
path: root/source/_assets/sass/_base.scss
blob: a45df844c57f2eed162372578c12e0aacabb30f6 (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
34
35
36
37
38
body {
  @apply bg-gray-900;
  @apply text-white;
}

p {
  @apply .my-3;
}

code {
  background-color: #232323;
  @apply .px-2;
  @apply .py-px;
  @apply .rounded;
  @apply .text-sm;
}

pre {
  @apply .bg-gray-800;
  @apply .my-4;
  @apply .overflow-x-auto;

  code.hljs {
  }
}

ol,
ul {
  @apply .list-inside;
}

ol {
  @apply .list-decimal;
}

ul {
  @apply .list-disc;
}