summaryrefslogtreecommitdiff
path: root/source/_assets/sass/_base.scss
blob: c6ebd9ded0bee746de37269ec67512b761193b60 (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
39
40
41
42
43
44
body {
  @apply bg-gray-900;
  @apply text-white;
}

p {
  @apply .my-3;
}

.post-content {
  p {
    @apply .my-8;
  }
}

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;
}