Files
myeasycms-v2/apps/web/styles/globals.css
Giancarlo Buomprisco ae404d8366 chore: add tw-animate-css dependency and update imports (#407)
- Added tw-animate-css version 1.4.0 to pnpm-lock.yaml and pnpm-workspace.yaml.
- Updated package.json to include tw-animate-css as a catalog dependency.
- Replaced tailwindcss-animate import with tw-animate-css in globals.css for improved animation handling.
2025-11-03 08:41:34 +07:00

59 lines
1.2 KiB
CSS

/*
* global.css
*
* Global styles for the entire application
*/
/* Tailwind CSS */
@import 'tailwindcss';
/* local styles - update the below if you add a new style */
@import './theme.css';
@import './theme.utilities.css';
@import './shadcn-ui.css';
@import './markdoc.css';
@import './makerkit.css';
@import 'tw-animate-css';
/* content sources - update the below if you add a new path */
@source '../../../packages/*/src/**/*.{ts,tsx}';
@source '../../../packages/features/*/src/**/*.{ts,tsx}';
@source '../../../packages/billing/*/src/**/*.{ts,tsx}';
@source '../../../packages/plugins/*/src/**/*.{ts,tsx}';
@source '../../../packages/cms/*/src/**/*.{ts,tsx}';
@source '../{app,components,config,lib}/**/*.{ts,tsx}';
/* variants - update the below if you add a new variant */
@variant dark (&:where(.dark, .dark *));
@layer base {
body {
@apply bg-background text-foreground;
font-feature-settings:
'rlig' 1,
'calt' 1;
}
html,
body {
scroll-padding-top: 56px;
}
[id] {
scroll-margin-top: 56px;
}
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--border, currentColor);
}
input::placeholder,
textarea::placeholder {
color: theme(--color-muted-foreground);
}
}