Files
falah-mobile/src/app/globals.css
T

53 lines
993 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #f5f4f0;
--foreground: #111827;
--gold: #D4AF37;
--emerald: #059669;
--nav-height: 64px;
}
html {
height: 100%;
color-scheme: light;
}
body {
height: 100%;
color: var(--foreground);
background: var(--background);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overscroll-behavior: none;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
-webkit-tap-highlight-color: transparent;
}
a {
color: inherit;
text-decoration: none;
}
/* Prevent iOS zoom on input focus */
input, select, textarea {
font-size: 16px;
}
.chat-scroll {
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}
/* Hide scrollbar on category strips */
.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }