Skip to content

Commit

Permalink
feat(content): add h3 styles
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Oct 8, 2024
1 parent a071c50 commit fc04f61
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions lib/components/SContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
.SContent :deep(h1),
.SContent :deep(.h1) {
margin: 0;
padding: 0;
max-width: 640px;
line-height: 40px;
font-size: 32px;
Expand All @@ -23,16 +24,26 @@
.SContent :deep(h2),
.SContent :deep(.h2) {
border-top: 0;
margin: 0;
padding: 0;
max-width: 640px;
line-height: 28px;
line-height: 32px;
font-size: 20px;
font-weight: 500;
color: var(--c-text-1);
}
.SContent :deep(h3),
.SContent :deep(.h3) {
margin: 0;
padding: 0;
max-width: 640px;
line-height: 24px;
font-size: 16px;
font-weight: 500;
color: var(--c-text-1);
}
.SContent :deep(p) {
margin: 0;
max-width: 640px;
Expand Down

0 comments on commit fc04f61

Please sign in to comment.