fix: prevent input field overflow on mobile by ensuring equal margins

Adds box-sizing: border-box to all filter inputs after 'all: unset' to ensure padding is included within the 100% width calculation, preventing horizontal overflow and ensuring equal left/right margins on small screens.
This commit is contained in:
2026-01-02 22:17:30 +01:00
parent 7ace841a8d
commit b6eb3d9458
5 changed files with 5 additions and 0 deletions

View File

@@ -102,6 +102,7 @@
input {
all: unset;
box-sizing: border-box;
font-family: sans-serif;
background: var(--nord0);
color: var(--nord6);

View File

@@ -93,6 +93,7 @@
input {
all: unset;
box-sizing: border-box;
font-family: "Noto Color Emoji", emoji, sans-serif;
background: var(--nord0);
color: var(--nord6);

View File

@@ -265,6 +265,7 @@
<style>
input#search {
all: unset;
box-sizing: border-box;
font-family: sans-serif;
background: var(--nord0);
color: #fff;

View File

@@ -114,6 +114,7 @@
input {
all: unset;
box-sizing: border-box;
font-family: sans-serif;
background: var(--nord0);
color: var(--nord6);

View File

@@ -111,6 +111,7 @@
input {
all: unset;
box-sizing: border-box;
font-family: sans-serif;
background: var(--nord0);
color: var(--nord6);