Skip to content

Commit 325115a

Browse files
committed
adjust table row
1 parent f905d4d commit 325115a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/uui-table/lib/uui-table-row.element.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class UUITableRowElement extends SelectOnlyMixin(
7171

7272
render() {
7373
return html`
74-
<slot @slotchanged=${this.updateChildSelectOnly}></slot>
74+
<slot id="open-part" @slotchanged=${this.updateChildSelectOnly}></slot>
7575
<div id="select-border" ${ref(this.#selectAreaChanged)}>
7676
<div id="select-top"></div>
7777
<div id="select-right"></div>
@@ -133,19 +133,19 @@ export class UUITableRowElement extends SelectOnlyMixin(
133133
pointer-events: auto;
134134
}
135135
:host([selectable]) #select-border #select-top {
136-
height: var(--uui-size-space-3);
136+
height: var(--uui-size-space-4);
137137
bottom: unset;
138138
}
139139
:host([selectable]) #select-border #select-right {
140-
width: var(--uui-size-space-3);
140+
width: var(--uui-size-space-4);
141141
left: unset;
142142
}
143143
:host([selectable]) #select-border #select-bottom {
144-
height: var(--uui-size-space-3);
144+
height: var(--uui-size-space-4);
145145
top: unset;
146146
}
147147
:host([selectable]) #select-border #select-left {
148-
width: var(--uui-size-space-3);
148+
width: var(--uui-size-space-4);
149149
right: unset;
150150
}
151151

0 commit comments

Comments
 (0)