R: Improve CSS setup
Some checks failed
Frontend CI / build (22.x) (push) Has been cancelled

This commit is contained in:
Ivan 2024-10-23 23:22:55 +03:00
parent 79d8184193
commit db7776ffdb

View File

@ -8,6 +8,16 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
*,
*::after,
*::before {
box-sizing: border-box;
/* Uncomment to debug layering and overflow */
/* background: hsla(135, 50%, 50%, 0.05); */
/* outline: 2px solid hotpink; */
}
html { html {
-webkit-text-size-adjust: none; -webkit-text-size-adjust: none;
-moz-text-size-adjust: none; -moz-text-size-adjust: none;
@ -42,6 +52,8 @@ body {
} }
:root { :root {
interpolate-size: allow-keywords;
font-size: var(--font-size-base); font-size: var(--font-size-base);
line-height: var(--line-height); line-height: var(--line-height);
font-family: var(--font-main); font-family: var(--font-main);