Skip to content

Commit

Permalink
fix error reading baseWidth less variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ichim-david committed Aug 31, 2023
1 parent 18367c8 commit f83dcb1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions theme/themes/eea/views/item.overrides
Original file line number Diff line number Diff line change
Expand Up @@ -177,19 +177,19 @@
}
@media only screen and (min-width: @tabletBreakpoint) {
.flex-items-wrapper.items-2-columns .flex-item {
--flex-item-width: calc(@baseWidth / 2 - 1%);
--flex-item-width: calc(@width / 2 - 1%);
}

.flex-items-wrapper.items-3-columns .flex-item {
--flex-item-width: calc(@baseWidth / 3);
--flex-item-width: calc(@width / 3);
}

.flex-items-wrapper.items-4-columns .flex-item {
--flex-item-width: calc(@baseWidth / 4);
--flex-item-width: calc(@width / 4);
}

.flex-items-wrapper.items-5-columns .flex-item {
--flex-item-width: calc(@baseWidth / 5);
--flex-item-width: calc(@width / 5);
}
}

Expand Down

0 comments on commit f83dcb1

Please sign in to comment.