feat: add small space when on input focus in phones to avoid hiding behind navbar
All checks were successful
Build & Deploy (prod) / deploy (push) Successful in 12s

This commit is contained in:
Raul Lugo
2026-02-07 23:34:20 +01:00
parent 47afbaeb7c
commit 71b15b737b

View File

@@ -11,6 +11,18 @@
@layer base {
html {
scroll-behavior: smooth;
@apply scroll-pt-20; /* 5rem = 80px */
}
body {
@apply scroll-pt-20; /* 5rem = 80px */
}
input,
textarea,
select,
[contenteditable="true"] {
@apply scroll-mt-32; /* 6rem = 96px */
}
}