Skip to content

Commit b41920d

Browse files
author
Jay Freestone
committed
fix(css): Add fix for flex child bug.
Provide a small 'offset' to accomodate for issues where flex children overflow.
1 parent d77c69c commit b41920d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

css/priority-plus.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
position: absolute;
2424
top: 0;
2525
left: 0;
26-
width: 100%;
26+
/* Provides a slight buffer to prevent overflow issues with flex parents. */
27+
width: calc(100% - 5px);
2728
pointer-events: none;
2829
visibility: hidden;
2930
}

0 commit comments

Comments
 (0)