Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa9edc1 commit c74664eCopy full SHA for c74664e
site/src/components/Timeline/TimelineEntry.tsx
@@ -14,16 +14,19 @@ export const TimelineEntry = forwardRef<
14
ref={ref}
15
css={(theme) => [
16
{
17
- position: "relative",
18
"&:focus": {
19
outlineStyle: "solid",
20
outlineOffset: -1,
21
outlineWidth: 2,
22
outlineColor: theme.palette.primary.main,
23
},
+ "& td": {
24
+ position: "relative",
25
+ overflow: "hidden",
26
+ },
27
"& td:before": {
28
position: "absolute",
- left: 50,
29
+ left: 49, // 50px - (width / 2)
30
display: "block",
31
content: "''",
32
height: "100%",
0 commit comments