Skip to content

Commit

Permalink
style: Comply with Tailwind Style Guide and Add Comments (#7326)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpruser committed Dec 12, 2024
1 parent 76e4df6 commit 9969d79
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion apps/site/styles/locals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* To enhance readability for Korean users, line spacing is increased,
* line breaks in the middle of words are prevented, and long words are
* managed to avoid disrupting the layout.
*/
html[lang='ko'] {
@apply break-words break-keep leading-[1.8];
@apply break-words
break-keep
leading-7;
}

0 comments on commit 9969d79

Please sign in to comment.