Skip to content

Commit 5a7b9a6

Browse files
authored
fix: components remove all not 0 spacings (#9841)
2 parents aedadd5 + 90c7b81 commit 5a7b9a6

File tree

52 files changed

+134
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+134
-89
lines changed

docs/CVE_OVERVIEW.md

Lines changed: 8 additions & 4 deletions

packages/components/src/components/@shared/_card.mixin.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
display: grid;
1515
height: 100%;
1616
overflow: visible;
17-
gap: to-rem(8);
1817

1918
grid-template-areas:
2019
'header close'

packages/components/src/components/@shared/_link.mixin.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444

4545
&__icon {
4646
display: inline-flex;
47-
margin-left: to-rem(8);
4847
}
4948
}
5049
}

packages/components/src/components/@shared/_pagination.mixin.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
.kol-pagination {
1010
display: flex;
11-
gap: to-rem(16);
1211
flex-wrap: wrap;
1312
align-items: center;
1413
justify-content: center;
@@ -18,7 +17,6 @@
1817
display: inline-flex;
1918
margin: 0;
2019
padding: 0;
21-
gap: 0.5em; /* @deprecated: do not use gap, margin, padding and so on in basis styling */
2220
flex-wrap: wrap;
2321
align-items: center;
2422
list-style: none;

packages/components/src/components/@shared/_table-settings.mixin.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,11 @@
1919

2020
&__columns-container {
2121
max-height: to-rem(200);
22-
margin-top: to-rem(16);
2322
overflow: auto;
2423
}
2524

2625
&__columns {
2726
display: grid;
28-
gap: to-rem(8);
2927
align-items: center;
3028
grid-auto-rows: min-content;
3129
grid-template-columns: min-content minmax(max-content, 1fr) to-rem(140) auto auto;

packages/components/src/components/@shared/_table-stateless.mixin.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636

3737
&__caption {
3838
min-height: var(--a11y-min-size); // align with configuration button
39-
padding-right: var(--a11y-min-size);
4039
text-align: start;
4140
}
4241

@@ -48,7 +47,6 @@
4847

4948
&__sort {
5049
display: inline-flex;
51-
gap: 0.25rem;
5250
align-items: center;
5351
}
5452

packages/components/src/components/breadcrumb/style.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
display: flex;
1212
margin: 0;
1313
padding: 0;
14-
gap: 0.5em; /* @deprecated: do not use gap, margin, padding and so on in basis styling */
1514
flex-wrap: wrap;
1615
place-items: center;
1716
list-style: none;

packages/components/src/components/combobox/style.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424
.kol-combobox {
2525
&__delete {
2626
@include kol-button-styles('kol-button');
27-
.kol-button {
28-
margin-top: -2px;
29-
margin-bottom: -2px;
30-
}
3127
}
3228
}
3329

packages/components/src/components/input-color/style.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
&__inputs-wrapper {
2525
display: flex;
26-
gap: to-rem(6);
2726
flex-direction: row;
2827
align-items: center;
2928
}

packages/components/src/components/input-file/style.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
inset: 0;
2020
width: 100%;
2121
height: 100%;
22-
padding: calc((var(--a11y-min-size) - to-rem(16)) / 10) 0.5em;
2322
cursor: pointer;
2423

2524
&::-webkit-file-upload-button,

0 commit comments

Comments
 (0)