Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions examples/sorter-with-nested-containers/sorter-dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export class ExampleSorterDashboard extends UmbElementMixin(LitElement) {

.outer-wrapper {
display: flex;
gap: var(--uui-size-layout-1);
}
`,
];
Expand Down
11 changes: 3 additions & 8 deletions examples/sorter-with-nested-containers/sorter-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
:host {
display: block;
width: 100%;
border: 1px dashed rgba(122, 122, 122, 0.25);
border-radius: calc(var(--uui-border-radius) * 2);
padding: var(--uui-size-space-1);
}

.sorter-placeholder {
Expand All @@ -87,14 +90,6 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
.sorter-container {
min-height: 20px;
}

example-sorter-group {
display: block;
width: 100%;
border: 1px dashed rgba(122, 122, 122, 0.25);
border-radius: calc(var(--uui-border-radius) * 2);
padding: var(--uui-size-space-1);
}
`,
];
}
Expand Down
1 change: 1 addition & 0 deletions examples/sorter-with-two-containers/sorter-dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export class ExampleSorterDashboard extends UmbElementMixin(LitElement) {

.outer-wrapper {
display: flex;
gap: var(--uui-size-layout-1);
}
`,
];
Expand Down
3 changes: 3 additions & 0 deletions examples/sorter-with-two-containers/sorter-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
:host {
display: block;
width: 100%;
border: 1px dashed rgba(122, 122, 122, 0.25);
border-radius: calc(var(--uui-border-radius) * 2);
padding: var(--uui-size-space-1);
}

.sorter-placeholder {
Expand Down