Skip to content

Commit

Permalink
feat(block-group, block): add new block-group component for sorting b…
Browse files Browse the repository at this point in the history
…locks. #10382
  • Loading branch information
driskull committed Jan 16, 2025
1 parent 1044878 commit 86d44fd
Show file tree
Hide file tree
Showing 8 changed files with 496 additions and 0 deletions.
Empty file.
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));
}

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

@include base-component();
Empty file.
Loading

0 comments on commit 86d44fd

Please sign in to comment.