scssの_typography.scssについて
Discussion
Closed
解決したいこと
Laravel11+React18+scssでプロジェクトを作成しています。scssのディレクトリ構成を以下のように作成しています。
project-root/
├── resources/
│ ├── sass/
│ │ ├── abstracts/
│ │ │ ├── _variables.scss
│ │ │ ├── _mixins.scss
│ │ │ └── _functions.scss
│ │ ├── base/
│ │ │ ├── _reset.scss
│ │ │ ├── _typography.scss
│ │ │ └── _base.scss
│ │ ├── components/
│ │ │ ├── _buttons.scss
│ │ │ └── _cards.scss
│ │ ├── layout/
│ │ │ ├── _header.scss
│ │ │ ├── _footer.scss
│ │ │ ├── _sidebar.scss
│ │ │ └── _grid.scss
│ │ ├── pages/
│ │ │ ├── _home.scss
│ │ │ ├── _about.scss
│ │ │ └── _contact.scss
│ │ ├── themes/
│ │ │ ├── _theme.scss
│ │ └── vendors/
上記の_typography.scss
に何を書いていいか迷っています。現在は以下の内容を入れるように心がけています。
font-family
font-size
font-weight
font-style
font-variant
font
line-height
letter-spacin
word-spacing
text-align
text-decorati
text-transfor
text-indent
text-shadow
white-space
word-break
overflow-wrap
direction
unicode-bidi
color
みなさんのご意見を聞きたいです
0