Skip to content

Commit

Permalink
fix: use correct overflow values
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Mar 17, 2022
1 parent 472d899 commit 01bc83a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/grid/theme/lumo/vaadin-grid-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,15 @@ registerStyles(
overflow: hidden;
}
:host([overflow~='end']) [part~='cell'][last-frozen]:not([part~='details-cell']) {
:host([overflow~='start']) [part~='cell'][last-frozen]:not([part~='details-cell']) {
border-right-color: var(--_lumo-grid-border-color);
}
[first-frozen-to-end] {
border-left: var(--_lumo-grid-border-width) solid transparent;
}
:host([overflow~='right']) [part~='cell'][first-frozen-to-end]:not([part~='details-cell']) {
:host([overflow~='end']) [part~='cell'][first-frozen-to-end]:not([part~='details-cell']) {
border-left-color: var(--_lumo-grid-border-color);
}
Expand Down Expand Up @@ -389,7 +389,7 @@ registerStyles(
border-left-color: var(--_lumo-grid-border-color);
}
:host([dir='rtl'][overflow~='left']) [part~='cell'][first-frozen-to-end]:not([part~='details-cell']) {
:host([dir='rtl'][overflow~='end']) [part~='cell'][first-frozen-to-end]:not([part~='details-cell']) {
border-right-color: var(--_lumo-grid-border-color);
}
`,
Expand Down

0 comments on commit 01bc83a

Please sign in to comment.