mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* feat(tree-view): add TreeView * fix(tree-view): select initial active node, correct typedefs * docs(tree-view): update examples * chore(tree-view): add test for types * docs(tree-view): rename example * docs(tree-view): improve docs * docs(tree-view): refine examples * docs: fix invalid syntax * chore: rebuild component index/api * docs(layout): increase height of sidenav menu [ci skip]
35 lines
1.1 KiB
SCSS
35 lines
1.1 KiB
SCSS
$feature-flags: (
|
|
ui-shell: true,
|
|
grid-columns-16: true
|
|
);
|
|
|
|
$css--font-face: true;
|
|
$css--helpers: true;
|
|
$css--body: true;
|
|
$css--use-layer: true;
|
|
$css--reset: true;
|
|
$css--default-type: true;
|
|
$css--plex: true;
|
|
|
|
// Use the "g80" (Gray 80) Carbon theme
|
|
@import "carbon-components/scss/globals/scss/vendor/@carbon/themes/scss";
|
|
@import "carbon-components/scss/globals/scss/component-tokens";
|
|
@import "carbon-components/src/components/tag/tag";
|
|
@import "carbon-components/src/components/notification/inline-notification";
|
|
@import "carbon-components/src/components/notification/toast-notification";
|
|
|
|
$carbon--theme: $carbon--theme--g80;
|
|
@include carbon--theme();
|
|
|
|
@import "carbon-components/scss/globals/scss/_css--reset";
|
|
@import "carbon-components/scss/globals/scss/_css--font-face";
|
|
@import "carbon-components/scss/globals/scss/_css--helpers";
|
|
@import "carbon-components/scss/globals/scss/_css--body";
|
|
@import "carbon-components/scss/globals/grid/grid";
|
|
|
|
// Import experimental TreeView styles not included in global styles
|
|
@import "carbon-components/src/components/treeview/treeview";
|
|
|
|
// Import all component styles
|
|
@import "carbon-components/scss/globals/scss/styles";
|
|
|