You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
864 B
CSS
24 lines
864 B
CSS
1 month ago
|
@media (min-width: 1024px) {
|
||
|
.filament-input-group > .grid {
|
||
|
gap: 0;
|
||
|
}
|
||
|
|
||
|
.filament-input-group > .grid > :first-child .filament-forms-input,
|
||
|
.filament-input-group > .grid > :first-child .filament-forms-input .choices__inner {
|
||
|
border-top-right-radius: 0;
|
||
|
border-bottom-right-radius: 0;
|
||
|
}
|
||
|
|
||
|
.filament-input-group > .grid > :not(:first-child):not(:last-child) .filament-forms-input,
|
||
|
.filament-input-group > .grid > :not(:first-child):not(:last-child) .filament-forms-input .choices__inner {
|
||
|
border-radius: 0;
|
||
|
border-left: none;
|
||
|
}
|
||
|
|
||
|
.filament-input-group > .grid > :last-child .filament-forms-input,
|
||
|
.filament-input-group > .grid > :last-child .filament-forms-input .choices__inner {
|
||
|
border-top-left-radius: 0;
|
||
|
border-bottom-left-radius: 0;
|
||
|
border-left: none;
|
||
|
}
|
||
|
}
|