Skip to content

Instantly share code, notes, and snippets.

@ulrischa
Created May 28, 2025 19:12
Show Gist options
  • Select an option

  • Save ulrischa/42b051a47fb104cc46ee964767d5ef29 to your computer and use it in GitHub Desktop.

Select an option

Save ulrischa/42b051a47fb104cc46ee964767d5ef29 to your computer and use it in GitHub Desktop.
Layer
<h2 class="main-heading" id="specific-heading">Dies ist eine Überschrift</h2>
@layer base, components, overrides;
@layer overrides {
h2 { color: red; }
#specific-heading { color: orange;}
}
@layer base {
h2 { color: blue; }
.main-heading { font-family: sans-serif; }
#specific-heading { color: yellow;}
}
@layer components {
.main-heading { color: green; }
h2 { text-align: center; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment