2024-02-28 23:03:49 +01:00
|
|
|
/* Layer architecture */
|
|
|
|
/* Best practice to put @layer at top of the import file for organization */
|
|
|
|
|
2024-04-07 08:13:27 +02:00
|
|
|
@layer reset, variables, base, properties, typography, theme, layouts, components, utilities;
|
2024-02-28 23:03:49 +01:00
|
|
|
|
|
|
|
/* Base */
|
2024-04-07 08:13:27 +02:00
|
|
|
@import 'reset.css' layer(reset);
|
2024-02-28 23:03:49 +01:00
|
|
|
/* @import '../css/base/normalize.css' layer(base); */
|
2024-04-07 08:13:27 +02:00
|
|
|
@import 'variables.css' layer(variables);
|
|
|
|
@import 'base.css' layer(base);
|
|
|
|
@import 'properties.css' layer(properties);
|
|
|
|
@import 'theme.css' layer(theme); /* theme variables */
|
|
|
|
@import 'typography.css' layer(typography); /* theme typography */
|
|
|
|
@import 'utilities.css' layer(utilities);
|
2024-02-28 23:03:49 +01:00
|
|
|
|
|
|
|
/* Layouts */
|
|
|
|
|
2024-04-07 08:13:27 +02:00
|
|
|
@import 'layout.css' layer(layouts);
|
2024-02-28 23:03:49 +01:00
|
|
|
|
|
|
|
/* Components */
|
|
|
|
|
2024-04-07 08:13:27 +02:00
|
|
|
@import 'recipe-page.css' layer(components);
|
2024-02-28 23:03:49 +01:00
|
|
|
|
|
|
|
/* ! important */
|
|
|
|
/* ? Question */
|
|
|
|
/* * Note */
|
|
|
|
/* TODO todo */
|