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 09081a2 commit b1f83a8Copy full SHA for b1f83a8
dotcom-rendering/src/components/ScrollableHighlights.importable.tsx
@@ -84,15 +84,17 @@ const itemStyles = css`
84
`;
85
86
const verticalLineStyles = css`
87
- :not(:last-child)::after {
88
- content: '';
89
- position: absolute;
90
- top: 0;
91
- bottom: 0;
92
- right: -10px;
93
- width: 1px;
94
- background-color: ${palette('--highlights-container-separator')};
95
- transform: translateX(-50%);
+ ${from.tablet} {
+ :not(:last-child)::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: -10px;
+ width: 1px;
+ background-color: ${palette('--highlights-container-separator')};
96
+ transform: translateX(-50%);
97
+ }
98
}
99
100
0 commit comments