tailwind update

This commit is contained in:
Nate Kelley 2025-02-28 13:13:59 -07:00
parent da0afb8847
commit 071be0eaa5
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
3 changed files with 3 additions and 8 deletions

View File

@ -3,7 +3,6 @@ import { Text } from '@/components/ui';
import { useAntToken } from '@/styles/useAntToken';
import { createStyles } from 'antd-style';
import React from 'react';
import { AnimatePresence, motion } from 'framer-motion';
import { PopupContainer, PopupSplitter } from '@/components/ui/popup/PopupContainer';
export const BusterListSelectedOptionPopupContainer: React.FC<{

View File

@ -35,8 +35,6 @@ html,
body {
background-color: #f3f3f3;
min-width: 800px;
// background-color: #f8f8f8;
// @media (prefers-color-scheme: dark) {
// background-color: #000000;
// color: #ffffff;
@ -50,7 +48,3 @@ body {
p {
@apply text-base leading-[1.2];
}
* {
@apply text-base;
}

View File

@ -98,6 +98,8 @@
--color-text-tertiary: var(--color-gray-light);
--color-text-danger: var(--color-danger-foreground);
--color-text-primary: var(--color-primary);
--spacing: 4px;
}
@import './tailwindAnimations.css';
@ -107,6 +109,6 @@
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
@apply bg-background text-foreground text-base;
}
}