Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(block-group, block): add block-group component #11319

Open
wants to merge 19 commits into
base: dev
Choose a base branch
from

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* CSS Custom Properties
*
* These properties can be overridden using the component's tag as selector.
*
* @prop --calcite-block-group-background-color: Specifies the component's background color.
*/

:host {
@apply block;
}

@include disabled();

.container {
position: relative;
background-color: var(--calcite-block-group-background-color, var(--calcite-color-foreground-1));
driskull marked this conversation as resolved.
Show resolved Hide resolved
}

.assistive-text {
@apply sr-only;
}

@include base-component();
Loading
Loading