mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
Enhance admin interface, security, and feed management with improved UX and authentication
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// Main style exports file
|
||||
// Combines all style components and re-exports them for easy imports
|
||||
|
||||
import { variables, lightModeTheme, fontImport } from './variables';
|
||||
import { layoutStyles } from './layout';
|
||||
import { componentStyles } from './components';
|
||||
import { utilityStyles } from './utilities';
|
||||
|
||||
// Combine all style components into a single CSS string
|
||||
export const designSystem = `
|
||||
${variables}
|
||||
${lightModeTheme}
|
||||
${fontImport}
|
||||
${layoutStyles}
|
||||
${componentStyles}
|
||||
${utilityStyles}
|
||||
`;
|
||||
|
||||
// Re-export everything for modular usage if needed
|
||||
export { variables, lightModeTheme, fontImport, layoutStyles, componentStyles, utilityStyles };
|
||||
Reference in New Issue
Block a user