diff options
| author | Li Zhineng <[email protected]> | 2025-08-08 23:10:01 +0800 |
|---|---|---|
| committer | Li Zhineng <[email protected]> | 2025-08-08 23:10:01 +0800 |
| commit | e5685547b3233516585f6a5e20ec24ef3351fe2f (patch) | |
| tree | 5aac605bfb3be9deff153e29f4903bb6037ab8ad /_sass/_reset.scss | |
| parent | a78acd0046d26b3047fa085e02517583a8f5d9b1 (diff) | |
| download | openairmx.org-e5685547b3233516585f6a5e20ec24ef3351fe2f.tar.gz openairmx.org-e5685547b3233516585f6a5e20ec24ef3351fe2f.zip | |
refresh ui
Diffstat (limited to '_sass/_reset.scss')
| -rw-r--r-- | _sass/_reset.scss | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/_sass/_reset.scss b/_sass/_reset.scss new file mode 100644 index 0000000..1cf0654 --- /dev/null +++ b/_sass/_reset.scss @@ -0,0 +1,39 @@ +*, *::before, *::after { + box-sizing: border-box; +} + +* { + margin: 0; +} + +@media (prefers-reduced-motion: no-preference) { + html { + interpolate-size: allow-keywords; + } +} + +body { + line-height: 1.5; + -webkit-font-smoothing: antialiased; +} + +img, picture, video, canvas, svg { + display: block; + max-width: 100%; +} + +input, button, textarea, select { + font: inherit; +} + +p, h1, h2, h3, h4, h5, h6 { + overflow-wrap: break-word; +} + +p { + text-wrap: pretty; +} + +h1, h2, h3, h4, h5, h6 { + text-wrap: balance; +} |
