Spaces:
Sleeping
Sleeping
File size: 10,184 Bytes
d97b8f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Import responsive design utilities */
@import './styles/responsive.css';
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 24 100% 50%;
--primary-foreground: 0 0% 100%;
--secondary: 240 4.8% 95.9%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 24 100% 50%;
--radius: 0.75rem;
--sidebar-background: 240 10% 3.9%;
--sidebar-foreground: 0 0% 98%;
--sidebar-primary: 24 100% 50%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 240 3.7% 15.9%;
--sidebar-accent-foreground: 0 0% 98%;
--sidebar-border: 240 3.7% 15.9%;
--sidebar-ring: 24 100% 50%;
--toaster-z-index: 9999 !important;
}
* {
@apply border-border selection:bg-primary/10 selection:text-primary;
}
html {
@apply scroll-smooth h-full overflow-hidden;
/* Prevent overscroll behavior on mobile */
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
}
body {
@apply bg-background text-foreground antialiased h-full;
font-feature-settings: "ss01", "ss02", "cv01", "cv02", "cv03";
/* Fix for mobile viewport height issues */
min-height: 100vh;
min-height: -webkit-fill-available;
position: relative;
}
#root {
@apply h-full max-w-none m-0 p-0;
min-height: 100vh;
min-height: -webkit-fill-available;
}
}
@layer components {
.glass-panel {
@apply bg-white/70 backdrop-blur-xl border border-white/20 shadow-sm;
}
.glass-panel-dark {
@apply bg-black/20 backdrop-blur-xl border border-white/10 shadow-md;
}
.navbar-item {
@apply flex items-center gap-3 px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-secondary;
}
.navbar-item-active {
@apply bg-primary/10 text-primary hover:bg-primary/20;
}
.section-title {
@apply text-xl font-semibold tracking-tight;
}
.card-hover {
@apply transition-all duration-300 hover:shadow-md hover:-translate-y-1;
}
/* Use less intensive animations for mobile compatibility */
.animate-in {
animation: fadeIn 0.3s ease-out forwards;
opacity: 0;
}
.slide-in-left {
animation: slideInLeft 0.3s ease-out forwards;
transform: translateX(-10px);
opacity: 0;
}
.slide-in-right {
animation: slideInRight 0.3s ease-out forwards;
transform: translateX(10px);
opacity: 0;
}
.slide-in-up {
animation: slideInUp 0.3s ease-out forwards;
transform: translateY(10px);
opacity: 0;
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideInLeft {
from {
transform: translateX(-10px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInRight {
from {
transform: translateX(10px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInUp {
from {
transform: translateY(10px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.hover-scale {
transition: transform 0.3s ease;
overflow: visible !important;
}
.hover-scale:hover {
transform: scale(1.02);
}
.page-transition-enter {
opacity: 0;
transform: translateY(10px);
}
.page-transition-enter-active {
opacity: 1;
transform: translateY(0);
transition: opacity 300ms, transform 300ms;
}
.page-transition-exit {
opacity: 1;
}
.page-transition-exit-active {
opacity: 0;
transform: translateY(-10px);
transition: opacity 300ms, transform 300ms;
}
/* Fix for any mobile WebView rendering issues */
input, textarea, select, button {
-webkit-appearance: none;
appearance: none;
border-radius: var(--radius);
}
/* Fix for mobile form focusing */
input:focus, textarea:focus, select:focus, button:focus {
outline: none;
}
/* Toast Animation Styles */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeOut {
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 0;
transform: translateY(20px);
}
}
.animate-in {
animation: fadeIn 0.3s ease forwards;
}
.animate-out {
animation: fadeOut 0.3s ease forwards;
}
.fade-in-0 {
opacity: 0;
}
.slide-in-from-bottom-6 {
transform: translateY(16px);
}
.duration-300 {
animation-duration: 300ms;
}
/* Fix for dropdown menus appearing behind other elements */
[data-radix-popper-content-wrapper] {
z-index: 9999 !important;
visibility: visible !important;
}
/* Show dropdown content */
[data-state="open"] {
visibility: visible !important;
z-index: 9999 !important;
}
/* Fix for dropdown scrolling issues */
.hover-scale,
.overflow-visible,
.card {
overflow: visible !important;
}
/* Add these CSS rules to fix black screen issue with dropdowns */
/* Fix for black screen with popover/dropdown menus */
body, #root {
min-height: 100vh;
position: relative;
overflow-x: hidden;
background-color: var(--background);
color: var(--foreground);
}
/* Ensure popover content has proper z-index and background */
[data-radix-popper-content-wrapper] {
z-index: 50 !important;
}
/* Fix for command dialog styles */
[cmdk-root] {
background-color: white !important;
}
[data-theme="dark"] [cmdk-root] {
background-color: hsl(240 10% 3.9%) !important;
}
/* Fix for popover content positioning */
.popover-content {
position: relative;
z-index: 999;
}
/* Prevent content behind popover from disappearing */
.popover-content * {
position: relative;
}
/* Prevent content from going black when popover is open */
.radix-popover-content-wrapper,
.radix-dialog-content-wrapper {
z-index: 9999;
position: relative;
}
/* Custom dropdown styling */
.floating-ui-dropdown {
background-color: white !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
border: 1px solid rgba(0, 0, 0, 0.1) !important;
border-radius: 6px !important;
overflow: hidden !important;
}
.dark .floating-ui-dropdown {
background-color: hsl(240 10% 3.9%) !important;
border-color: rgba(255, 255, 255, 0.1) !important;
}
.floating-ui-dropdown-search {
background-color: white !important;
color: black !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.dark .floating-ui-dropdown-search {
background-color: hsl(240 10% 3.9%) !important;
color: white !important;
border-color: rgba(255, 255, 255, 0.1) !important;
}
.floating-ui-dropdown-option {
background-color: white !important;
color: black !important;
}
.dark .floating-ui-dropdown-option {
background-color: hsl(240 10% 3.9%) !important;
color: white !important;
}
.floating-ui-dropdown-option:hover,
.floating-ui-dropdown-option-active {
background-color: rgba(0, 0, 0, 0.05) !important;
}
.dark .floating-ui-dropdown-option:hover,
.dark .floating-ui-dropdown-option-active {
background-color: rgba(255, 255, 255, 0.1) !important;
}
/* Fix for sonner toast notifications - ensure they're visible with high z-index */
:root {
--toaster-z-index: 9999 !important;
}
/* Override any unwanted sonner positioning */
[data-sonner-toaster] {
position: fixed !important;
z-index: var(--toaster-z-index) !important;
bottom: 16px !important;
right: 16px !important;
top: auto !important;
left: auto !important;
}
/* Super aggressive styling for toast */
[data-sonner-toast] {
position: relative !important;
z-index: calc(var(--toaster-z-index) + 1) !important;
background-color: hsl(0 0% 100%) !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
border: 1px solid var(--border) !important;
backdrop-filter: blur(4px) !important;
opacity: 1 !important;
}
/* Force all child elements to have the same background */
[data-sonner-toast] * {
background-color: transparent !important;
}
[data-sonner-toast] > div {
background-color: inherit !important;
opacity: 1 !important;
}
/* Style the actual toast components */
.group.toast {
background-color: hsl(0 0% 100%) !important;
opacity: 1 !important;
}
[data-theme="dark"] [data-sonner-toast],
[data-theme="dark"] .group.toast {
background-color: hsl(240 10% 3.9%) !important;
border-color: rgba(255, 255, 255, 0.1) !important;
}
/* Ensure toast notifications are not blocked by any other content */
[data-sonner-toaster][data-theme][data-x-position="right"] {
right: 16px !important;
}
[data-sonner-toaster][data-theme][data-y-position="bottom"] {
bottom: 16px !important;
top: auto !important;
}
/* Toast animations for bottom position */
@keyframes toastInBottom {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes toastOutBottom {
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 0;
transform: translateY(20px);
}
}
[data-sonner-toast][data-styled="true"][data-mounted="true"] {
animation: toastInBottom 0.3s ease-out forwards !important;
}
[data-sonner-toast][data-styled="true"][data-mounted="false"] {
animation: toastOutBottom 0.3s ease-in forwards !important;
}
|