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/util class doc #66

Merged
merged 10 commits into from
Sep 12, 2023
44 changes: 0 additions & 44 deletions packages/vanilla/src/sass/demo/_index.scss

This file was deleted.

11 changes: 10 additions & 1 deletion packages/vanilla/src/sass/utilities/_spacing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,29 @@

$spacing: (
16x: var(--cbp-space-16x),
15x: var(--cbp-space-15x),
14x: var(--cbp-space-14x),
13x: var(--cbp-space-13x),
12x: var(--cbp-space-12x),
11x: var(--cbp-space-11x),
10x: var(--cbp-space-10x),
9x: var(--cbp-space-9x),
8x: var(--cbp-space-8x),
7x: var(--cbp-space-7x),
6x: var(--cbp-space-6x),
5x: var(--cbp-space-5x),
4x: var(--cbp-space-4x),
3x: var(--cbp-space-3x),
2x: var(--cbp-space-2x),
1x: var(--cbp-space-1x),
half-x: var(--cbp-space-half-x),
1px: 1px,
0: 0
);

@each $name, $space in $spacing {
.cbp-margin-#{$name} {
margin-left: #{$space} !important;
margin: #{$space} !important;
dannyk3941 marked this conversation as resolved.
Show resolved Hide resolved
}

.cbp-margin-top-#{$name} {
Expand Down
8 changes: 0 additions & 8 deletions packages/vanilla/src/sass/utilities/_z-index.scss

This file was deleted.

Loading