From e03737853ce623c42eb9a449b1cb406183eb0919 Mon Sep 17 00:00:00 2001 From: Inhji Date: Fri, 7 Apr 2023 10:31:54 +0200 Subject: [PATCH] add css reset --- assets/css/app.css | 1 + assets/css/reset.css | 52 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 assets/css/reset.css diff --git a/assets/css/app.css b/assets/css/app.css index bf2d960..54ab276 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -2,6 +2,7 @@ @import "tailwindcss/components"; @import "tailwindcss/utilities"; +@import "./reset.css"; @import "./lolight.css"; @import "./lightbox.css"; diff --git a/assets/css/reset.css b/assets/css/reset.css new file mode 100644 index 0000000..b37fa30 --- /dev/null +++ b/assets/css/reset.css @@ -0,0 +1,52 @@ +/* + 1. Use a more-intuitive box-sizing model. +*/ +*, *::before, *::after { + box-sizing: border-box; +} +/* + 2. Remove default margin +*/ +* { + margin: 0; +} +/* + 3. Allow percentage-based heights in the application +*/ +html, body { + height: 100%; +} +/* + Typographic tweaks! + 4. Add accessible line-height + 5. Improve text rendering +*/ +body { + line-height: 1.5; + -webkit-font-smoothing: antialiased; +} +/* + 6. Improve media defaults +*/ +img, picture, video, canvas, svg { + display: block; + max-width: 100%; +} +/* + 7. Remove built-in form typography styles +*/ +input, button, textarea, select { + font: inherit; +} +/* + 8. Avoid text overflows +*/ +p, h1, h2, h3, h4, h5, h6 { + overflow-wrap: break-word; +} +/* + 9. Create a root stacking context +*/ +#root, #__next { + isolation: isolate; +} \ No newline at end of file