Skip to content

Commit d46765b

Browse files
authored
fix: Incorrect table cell width in App Settings table (#2933)
1 parent 4e4673a commit d46765b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Field/Field.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
display: flex;
3030
align-items: center;
3131
flex-shrink: 0;
32-
width: calc(var(--modal-min-width) * var(--modal-label-ratio));
33-
max-width: calc(var(--modal-min-width) * var(--modal-label-ratio));
32+
width: calc(var(--modal-min-width, 540px) * var(--modal-label-ratio, 0.5));
33+
max-width: calc(var(--modal-min-width, 540px) * var(--modal-label-ratio, 0.5));
3434
}
3535

3636
.right {

0 commit comments

Comments
 (0)