jan/docs/src/styles/tweaks/markdown.scss
Faisal Amir bbe1ad5cc0
feat: restore docusaurus style (#2152)
Co-authored-by: Henry <150573299+hieu-jan@users.noreply.github.com>
2024-02-26 12:42:59 +07:00

54 lines
583 B
SCSS

.theme-doc-markdown {
a,
p,
span,
li {
@apply leading-loose;
}
a {
@apply text-blue-600 dark:text-blue-400;
}
ul {
list-style: revert;
}
ol {
list-style: decimal;
}
ul,
ol {
padding-left: 28px;
li {
@apply leading-loose;
p {
margin-bottom: 0;
}
}
}
p {
@apply mb-2;
}
h1 {
&:first-child {
@apply mb-4;
}
}
h1,
h2 {
@apply mb-3;
}
table {
width: 100%;
display: table;
}
}
.task-list-item {
list-style: none;
}
blockquote {
margin-bottom: 12px;
}