Shared: Section: fixed header indentations for mobile

This commit is contained in:
Dmitry Sychugov 2024-04-12 19:44:20 +05:00
parent 1f22c02308
commit 5c92ac8a16

View File

@ -488,6 +488,21 @@ const tabletProps = css<{ viewAs?: TViewAs }>`
padding-right: 0;
`}
z-index: 201;
@media ${mobile} {
min-width: 100vw;
${(props) =>
props.theme.interfaceDirection === "rtl"
? css`
margin-left: 0;
padding-right: 0;
padding-left: 32px;
`
: css`
margin-left: -16px;
padding-right: 16px;
padding-left: 16px;
`}
}
}
.section-body_filter {
display: block;