Skip to content

Commit 2f44470

Browse files
committed
Fix incorrect less escape
1 parent 39e1300 commit 2f44470

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/design/frontend/Magento/blank/web/css/source/_extends.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@
12081208
& when (@media-common = true) {
12091209
.abs-field-date-input {
12101210
margin-right: @indent__s;
1211-
width: calc(~'100% -' @icon-calendar__font-size + @indent__s);
1211+
width: calc(~'100%' - (@icon-calendar__font-size + @indent__s));
12121212
}
12131213
}
12141214

app/design/frontend/Magento/luma/web/css/source/_extends.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@
16381638
& when (@media-common = true) {
16391639
.abs-field-date-input {
16401640
.lib-css(margin-right, @indent__s);
1641-
width: calc(~'100% -' @icon-calendar__font-size + @indent__s);
1641+
width: calc(~'100%' - (@icon-calendar__font-size + @indent__s));
16421642
}
16431643
}
16441644

0 commit comments

Comments
 (0)