Merge branch 'dev' into 'staging'

--

See merge request frontend/marketplace!213
This commit is contained in:
Nastya 2024-07-11 15:04:33 +00:00
commit 5274d01c05
4 changed files with 7 additions and 20 deletions

@ -46,17 +46,6 @@ export const NotificationsModal = ({
borderRadius: "8px", borderRadius: "8px",
boxShadow: boxShadow:
"0px 3px 18px rgba(49, 28, 77, 0.1), 0px 3px 34px rgba(49, 28, 77, 0.15)", "0px 3px 18px rgba(49, 28, 77, 0.1), 0px 3px 34px rgba(49, 28, 77, 0.15)",
"&::-webkit-scrollbar": { width: "6px" },
"&::-webkit-scrollbar-track": {
background: "#F0F0F6",
margin: "5px",
borderRadius: "5px",
},
"&::-webkit-scrollbar-thumb": {
width: "4px",
background: "#9A9AAF",
borderRadius: "5px",
},
}, },
}} }}
> >

@ -6,9 +6,11 @@ body {
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
/*скрывает все скролл-бары*/
/*все скролл-бары*/
html * ::-webkit-scrollbar { html * ::-webkit-scrollbar {
background-color: inherit; background-color: inherit;
width: 4px;
} }
html * ::-webkit-scrollbar-button { html * ::-webkit-scrollbar-button {
display: none; display: none;
@ -17,8 +19,10 @@ html * ::-webkit-scrollbar-track {
background-color: inherit; background-color: inherit;
} }
html * ::-webkit-scrollbar-thumb { html * ::-webkit-scrollbar-thumb {
width: 5px; width: 4px;
background-color: gray; background-color: #9A9AAF;
color: #9A9AAF;
border-radius: 5px;
} }

@ -23,9 +23,6 @@ import {parseAxiosError} from "@utils/parse-error"
const dialogContainerStyle = { const dialogContainerStyle = {
height: "100%", height: "100%",
overflowY: "scroll", overflowY: "scroll",
"::-webkit-scrollbar": {
display: "none",
},
} }
export default function JuridicalDocumentsDialog() { export default function JuridicalDocumentsDialog() {

@ -19,9 +19,6 @@ import { theme } from "@root/utils/theme"
const dialogContainerStyle = { const dialogContainerStyle = {
height: "100%", height: "100%",
overflowY: "scroll", overflowY: "scroll",
"::-webkit-scrollbar": {
display: "none",
},
} }
export default function NkoDocumentsDialog() { export default function NkoDocumentsDialog() {