@cbpds/web-components
Version:
Web components for the CBP Design System.
16 lines (15 loc) • 396 B
CSS
/*
* Caution: "global styles" get injected into every component and can cause file size bloat.
* These should only include SASS variables and mixins that are not written out to CSS directly
*/
/**
* @prop --cbp-accordion-gap: --cbp-space-3x
*/
:root {
--cbp-accordion-gap: var(--cbp-space-3x);
}
cbp-accordion {
display: flex;
flex-direction: column;
gap: var(--cbp-accordion-gap);
}