SCSS
Want some Sass with your obsidian theme‽ here’s How and Why - Obsidian Hub - Obsidian Publish
Automatically compile file
sass --watch "scss/base.scss":obsidian.cssMixins
Create a mixin
@mixin list-reset {
margin: 0;
padding: 0;
list-style: none;
}Use a mixin
selector {
@include identifier;
}