We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8d4bf commit 6fba6b1Copy full SHA for 6fba6b1
1 file changed
src/app/(components)/(body)/body.tsx
@@ -1,5 +1,6 @@
1
'use client'
2
import styled from "styled-components";
3
+import { Styles } from '@/styles';
4
5
export const Content = styled.div`
6
overflow-x: hidden;
@@ -34,4 +35,8 @@ export const ScrollbarWrapper = styled.div`
34
35
background: ${({ theme }) => theme.colors.mainGreen};
36
max-height: 10px;
37
}
38
+
39
+ @media (${Styles.devices.tabletL}) {
40
+ overflow-y: hidden;
41
+ }
42
`;
0 commit comments