Skip to content

Commit 34829f4

Browse files
authored
fix(Form): use correct container query if width is float (#5954)
Fixes #5952
1 parent 8d12266 commit 34829f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/main/src/components/Form/Form.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333
}
3434

35-
@container (max-width: 599px) {
35+
@container (max-width: 599.99px) {
3636
.form {
3737
--_ui5wcr_form_label_span: var(--_ui5wcr_form_label_span_s);
3838
--_ui5wcr_form_columns: var(--_ui5wcr_form_columns_s);
@@ -41,7 +41,7 @@
4141
}
4242
}
4343

44-
@container (min-width: 600px) and (max-width: 1023px) {
44+
@container (min-width: 600px) and (max-width: 1023.99px) {
4545
.form {
4646
--_ui5wcr_form_label_span: var(--_ui5wcr_form_label_span_m);
4747
--_ui5wcr_form_columns: var(--_ui5wcr_form_columns_m);
@@ -50,7 +50,7 @@
5050
}
5151
}
5252

53-
@container (min-width: 1024px) and (max-width: 1439px) {
53+
@container (min-width: 1024px) and (max-width: 1439.99px) {
5454
.form {
5555
--_ui5wcr_form_label_span: var(--_ui5wcr_form_label_span_l);
5656
--_ui5wcr_form_columns: var(--_ui5wcr_form_columns_l);

0 commit comments

Comments
 (0)