Custom CSS
How to add custom css code in metronic theme for making responsive only device width > 1200px for container. the aside & header should be fixed position
Replies (4)
Hi
You can create a separate SCSS file in /src/assets to keep your custom styles isolated, making the code easier to manage. Once you’ve added your custom SCSS file, import it into /src/styles.scss like this:
@import "./assets/your-custom-file.scss"; By adding it to /src/styles.scss, your custom styles will be bundled with the rest of the CSS when you build the project.
Thank you