mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
* feat(theme): add g80 theme * docs(data-table): use link with icon variant * feat(search): support expandable variant * fix(file-uploaded): use semantic p element instead of strong * feat(side-nav): dispatch open, close, click:overlay events * refactor(ui-shell): remove usage of deprecated Icon component * feat(ui-shell): allow custom hamburger menu icons * feat(button): support xl size * fix(code-snippet): wrap code element with pre * refactor(button): use button specific tooltip class for icon-only variant * feat(password-input): support warning, inline props * feat(data-table): support medium size
32 lines
1 KiB
SCSS
32 lines
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 all component styles
|
|
@import "carbon-components/scss/globals/scss/styles";
|
|
|