UNPKG

289 BSCSSView Raw
1@mixin td-side-sheet-theme($theme) {
2 $background: map-get($theme, background);
3 $foreground: map-get($theme, foreground);
4
5 $dialog: map-get($background, dialog);
6 $text: map-get($foreground, text);
7
8 .td-side-sheet-container {
9 background-color: $dialog;
10 color: $text;
11 }
12}