diff --git a/apps/site/styles/index.css b/apps/site/styles/index.css index 827becbc14fd2..51f236e207c48 100644 --- a/apps/site/styles/index.css +++ b/apps/site/styles/index.css @@ -12,3 +12,4 @@ @import './base.css'; @import './markdown.css'; @import './effects.css'; +@import './locals.css'; diff --git a/apps/site/styles/locals.css b/apps/site/styles/locals.css new file mode 100644 index 0000000000000..2ce0fe2afecd9 --- /dev/null +++ b/apps/site/styles/locals.css @@ -0,0 +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-7; +}