Skip to content

Commit 56fbf91

Browse files
mpruserlucas-rxcmpruser
authored
Add CSS structure for country-specific style overrides (#7326) (#7327)
* feat: Add CSS structure for country-specific style overrides (#7326) * refactor: apply Tailwind classes for Korean-specific styles (#7326) * style: Comply with Tailwind Style Guide and Add Comments (#7326) --------- Co-authored-by: lucas <[email protected]> Co-authored-by: mpruser <[email protected]>
1 parent 19047d0 commit 56fbf91

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

apps/site/styles/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
@import './base.css';
1313
@import './markdown.css';
1414
@import './effects.css';
15+
@import './locals.css';

apps/site/styles/locals.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* To enhance readability for Korean users, line spacing is increased,
3+
* line breaks in the middle of words are prevented, and long words are
4+
* managed to avoid disrupting the layout.
5+
*/
6+
html[lang='ko'] {
7+
@apply break-words
8+
break-keep
9+
leading-7;
10+
}

0 commit comments

Comments
 (0)