Skip to content

Commit 3478fd5

Browse files
authored
fix: round progress-bar height to nearest full pixel (#11278)
1 parent ffb4fca commit 3478fd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/vaadin-lumo-styles/src/components/progress-bar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:host {
88
display: block;
99
width: 100%; /* prevent collapsing inside non-stretching column flex */
10-
height: calc(var(--lumo-size-l) / 10);
10+
height: round(var(--lumo-size-l) / 10, 1px);
1111
margin: var(--lumo-space-s) 0;
1212
}
1313

0 commit comments

Comments
 (0)