- Updated rate limiting TTL values in env.validation.ts and throttler.config.ts to reduce response times and improve request handling. - Adjusted throttle settings in AuthController, CatalogController, and OrdersController to align with new rate limits, enhancing overall API responsiveness. - Refactored OrderCard and OrderCardSkeleton components for better loading states and visual consistency. - Improved AddressForm and ServiceConfigurationStep components for better state management and user experience. - Streamlined CSS styles in globals.css and responsive.css for better maintainability and clarity.
16 lines
410 B
CSS
16 lines
410 B
CSS
/**
|
|
* Minimal Responsive Utilities
|
|
*
|
|
* Only semantic layout patterns that combine multiple properties.
|
|
* Use Tailwind's responsive variants (sm:, md:, lg:, xl:) for everything else.
|
|
*/
|
|
|
|
/* ===== BREAKPOINT VALUES (for JavaScript usage) ===== */
|
|
:root {
|
|
--cp-breakpoint-sm: 640px;
|
|
--cp-breakpoint-md: 768px;
|
|
--cp-breakpoint-lg: 1024px;
|
|
--cp-breakpoint-xl: 1280px;
|
|
--cp-breakpoint-2xl: 1536px;
|
|
}
|