Skip to content

Instantly share code, notes, and snippets.

@manufosela
Created August 11, 2023 10:49
Show Gist options
  • Save manufosela/c02fc3102d4ec29244dd45bdba20d3c6 to your computer and use it in GitHub Desktop.
Save manufosela/c02fc3102d4ec29244dd45bdba20d3c6 to your computer and use it in GitHub Desktop.
Border radius nested elements using css variable
.parent {
--nested-radius: calc(var(--radius) - var(--padding));
}
.nested {
border-radius: var(--nested-radius);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment