fix: max-width on input select.

This commit is contained in:
Darshan
2025-09-28 18:41:38 +05:30
parent e258bf3098
commit 05db3fcecf
@@ -444,7 +444,7 @@
{#snippet indexEditForm({ index, count, isDesktop = true })}
{@const firstItem = count === 0}
{#if isDesktop}
<Layout.Stack direction="row" gap="m" alignItems="center">
<Layout.Stack gap="m" direction="row" alignItems="center" class="desktop-selects-form">
<InputSelect
id="key-{count}"
label={firstItem ? 'Column' : undefined}
@@ -560,4 +560,10 @@
visibility: hidden !important;
}
}
// stack > div > input-select button!
:global(.desktop-selects-form :first-child button:first-of-type) {
width: 164px;
max-width: 164px;
}
</style>