Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chip, chip group): Add component tokens #8607

Merged
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3c24e9a
feat(chip, chip group): Add component tokens
macandcheese Jan 13, 2024
ebc89f3
Clean up
macandcheese Jan 13, 2024
d91391b
Clean up
macandcheese Jan 16, 2024
3859e7a
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
benelan Jan 16, 2024
2edb1af
Clean up
macandcheese Jan 17, 2024
bfb4d38
Clean up
macandcheese Jan 17, 2024
b11b887
Clean up
macandcheese Jan 17, 2024
a52b259
Clean up
macandcheese Jan 17, 2024
9b85de5
Clean up
macandcheese Jan 17, 2024
b4902be
Clean up
macandcheese Jan 25, 2024
e530de3
Clean up
macandcheese Jan 25, 2024
e5fb433
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Jan 26, 2024
d5af0a3
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Jan 29, 2024
a683f26
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 12, 2024
1aa8abd
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 12, 2024
7602006
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 13, 2024
ea965d6
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 15, 2024
8edcca0
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 15, 2024
5b10107
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 16, 2024
97060ed
Clean up
macandcheese Feb 16, 2024
78b2011
Clean up
macandcheese Feb 16, 2024
fc94c9e
Clean up
macandcheese Feb 16, 2024
5675ae5
Merge branch 'epic/7180-component-tokens' into macandcheese/token-upd…
macandcheese Feb 16, 2024
4fcc9d9
Clean up
macandcheese Feb 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
display: flex;
inline-size: 100%;
flex-wrap: wrap;
gap: theme("spacing.2");
gap: var(--calcite-spacing-sm);
macandcheese marked this conversation as resolved.
Show resolved Hide resolved
}

::slotted(calcite-chip) {
flex: none;
}

:host([scale="s"]) .container {
gap: theme("spacing.1");
gap: var(--calcite-spacing-xs);
}

:host([scale="l"]) .container {
gap: theme("spacing.3");
gap: var(--calcite-spacing-md);
}

@include disabled();
Expand Down
Loading
Loading