Cork Admin is built with SASS (Syntactically Awesome Stylesheets), a powerful CSS preprocessor that enables a modular, scalable, and maintainable styling architecture. By leveraging SASS, developers can customize themes, variables, and components efficiently without touching the core CSS files.
SASS allows you to write cleaner, more organized CSS with features such as:
Define global colors, font sizes, breakpoints, spacing, etc.
Maintain structure by nesting selectors inside their parent elements.
Split styles into reusable files for better project organization.
Reuse groups of styles with dynamic inputs.
Perform calculations and logic inside your styles.
You can find all SASS source files inside the src/scss/ directory:
HTML
├── SCSS -> Contains the SCSS Files
├── base
├── dark
├── layouts
└── light
└── utilities
Note: You should make all your SASS customizations inside the html/scss/ folder to keep your changes separate from compiled CSS.