style: enhance mobile responsiveness and touch targets across components

This commit is contained in:
2026-04-28 23:00:36 +03:00
parent 1f7ca9806d
commit a46b88acee
4 changed files with 223 additions and 55 deletions
+10 -1
View File
@@ -1,7 +1,16 @@
/* Global styles */
/* Global styles — mobile-first base */
html, body {
height: 100%;
margin: 0;
background-color: #f4f5f7;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
/* Prevent horizontal overflow from any element */
overflow-x: hidden;
/* Use border-box globally so padding never causes overflow */
box-sizing: border-box;
}
/* Ensure all children inherit border-box */
*, *::before, *::after {
box-sizing: inherit;
}