-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(block-group, block): add new block-group component for sorting b…
…locks. #10382
- Loading branch information
Showing
8 changed files
with
496 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
24 changes: 24 additions & 0 deletions
24
packages/calcite-components/src/components/block-group/block-group.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Oops, something went wrong.