Skip to content

Commit

Permalink
(core) Adjust the line-height property for improved readability of text.
Browse files Browse the repository at this point in the history
This enhances the overall visual experience and ensures sufficient spacing between lines
  • Loading branch information
malkoG committed Oct 5, 2023
1 parent 3854bf1 commit 5cd60de
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ body {
font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
margin: 0 8px;
font-size: 108%;
line-height: 1.5;
line-height: 1.625;

word-break: keep-all;
}
Expand Down Expand Up @@ -137,13 +137,17 @@ article > img {
}

article p {
margin: 0.75rem 0;
margin: 1.5rem 0;
}

article ul {
@apply list-disc ml-8 my-2;
}

article li > ul {
@apply ml-6;
}

article ul li {
margin-top: 0.5rem;
}
Expand Down

0 comments on commit 5cd60de

Please sign in to comment.