| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- @import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&display=swap');
- @import 'tailwindcss';
- @import 'tw-animate-css';
- @custom-variant dark (&:is(.dark *));
- /* @source rules from extensions will be added here by the dashboardTailwindSourcePlugin */
- /*
- * Important: This is not an actual import. We are pre-processing this CSS file
- * to inject the theme variables into the CSS. This import will be replaced
- * with the actual theme variables by the Vite plugin.
- */
- @import 'virtual:admin-theme';
- @theme inline {
- --color-background: var(--background);
- --color-foreground: var(--foreground);
- --color-card: var(--card);
- --color-card-foreground: var(--card-foreground);
- --color-popover: var(--popover);
- --color-popover-foreground: var(--popover-foreground);
- --color-primary: var(--primary);
- --color-primary-foreground: var(--primary-foreground);
- --color-secondary: var(--secondary);
- --color-secondary-foreground: var(--secondary-foreground);
- --color-muted: var(--muted);
- --color-muted-foreground: var(--muted-foreground);
- --color-accent: var(--accent);
- --color-accent-foreground: var(--accent-foreground);
- --color-destructive: var(--destructive);
- --color-destructive-foreground: var(--destructive-foreground);
- --color-success: var(--success);
- --color-success-foreground: var(--success-foreground);
- --color-dev-mode: var(--dev-mode);
- --color-dev-mode-foreground: var(--dev-mode-foreground);
- --color-border: var(--border);
- --color-input: var(--input);
- --color-ring: var(--ring);
- --color-chart-1: var(--chart-1);
- --color-chart-2: var(--chart-2);
- --color-chart-3: var(--chart-3);
- --color-chart-4: var(--chart-4);
- --color-chart-5: var(--chart-5);
- --radius-sm: calc(var(--radius) - 4px);
- --radius-md: calc(var(--radius) - 2px);
- --radius-lg: var(--radius);
- --radius-xl: calc(var(--radius) + 4px);
- --color-sidebar-ring: var(--sidebar-ring);
- --color-sidebar-border: var(--sidebar-border);
- --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
- --color-sidebar-accent: var(--sidebar-accent);
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
- --color-sidebar-primary: var(--sidebar-primary);
- --color-sidebar-foreground: var(--sidebar-foreground);
- --color-sidebar: var(--sidebar);
- --color-brand: var(--brand);
- --color-brand-lighter: var(--brand-lighter);
- --color-brand-darker: var(--brand-darker);
- --font-sans: var(--font-sans);
- --font-mono: var(--font-mono);
- --color-vendure-brand: #17c1ff;
- }
- @layer base {
- * {
- @apply border-border outline-ring/50;
- }
- body {
- @apply bg-background text-foreground;
- }
- }
- @utility col-main {
- grid-column: span 3 / span 3;
- }
- @utility col-side {
- grid-column: span 2 / span 2;
- }
- @layer utilities {
- @keyframes rotate {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .animate-rotate {
- animation: rotate 0.5s linear;
- }
- }
- /* Overrides for the react-grid-layout library */
- .react-grid-item {
- transition: none !important;
- }
|