Skip to content

Commit c4487ed

Browse files
authored
Use default font for definition lists (#689)
* Use default font for definition lists * Adjust default font
1 parent b306bfa commit c4487ed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Elastic.Markdown/Assets/markdown/definition-list.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
@apply mt-4;
55
}
66
dt {
7-
@apply font-mono text-grey-100 mt-6;
7+
@apply text-black mt-6;
88
}
99
dd {
10-
@apply mt-2 ml-4;
10+
@apply text-ink-light mt-2 ml-4;
1111
}
1212
}
1313
}

src/Elastic.Markdown/Assets/markdown/typography.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.markdown-content {
22

3-
font-size: 16px;
3+
@apply text-ink text-base font-body;
44

55
h1 {
66
@apply text-4xl text-ink-dark font-semibold;
@@ -47,10 +47,10 @@
4747
}
4848

4949
p {
50-
@apply font-body text-base text-ink mt-4;
50+
@apply mt-4;
5151
letter-spacing: 0;
5252
line-height: 1.5em;
53-
text-wrap: pretty;
53+
/*text-wrap: pretty;*/
5454
}
5555

5656
a {

0 commit comments

Comments
 (0)