summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/markdown.css
blob: ddf8b7872d9464b60e331fb1a1fa6db6d7b7804f (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
[data-component="markdown"] {
  min-width: 0;
  max-width: 100%;
  overflow: auto;
  scrollbar-width: none;
  color: var(--text-base);

  /* text-14-regular */
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-large); /* 142.857% */
  letter-spacing: var(--letter-spacing-normal);

  &::-webkit-scrollbar {
    display: none;
  }

  /* p { */
  /*   margin-top: 8px; */
  /*   margin-bottom: 8px; */
  /* } */
}