скрытие всех скролл-баров
This commit is contained in:
parent
8d10f403fc
commit
89fcdf7bee
@ -6,6 +6,14 @@ body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
/*скрывает все скролл-бары*/
|
||||
body * {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
body * ::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||
|
@ -135,6 +135,9 @@ export const ContactForm = ({
|
||||
backgroundColor: theme.palette.background.default,
|
||||
height: "100vh",
|
||||
overflow: "auto",
|
||||
"&::-webkit-scrollbar": { width: "0", display: "none", msOverflowStyle: "none" },
|
||||
scrollbarWidth: "none",
|
||||
msOverflowStyle: "none"
|
||||
}}
|
||||
>
|
||||
<Box
|
||||
|
Loading…
Reference in New Issue
Block a user