pravki 27.06

This commit is contained in:
egortriston
2025-06-27 18:23:21 +03:00
parent c5470df33e
commit fb8c1d3dfa
2 changed files with 9 additions and 1 deletions

View File

@ -409,7 +409,7 @@ const BottomHead = ({ menuOpen, onClose }: { menuOpen: boolean; onClose: () => v
</div>
{/* Табы */}
<div data-current="Tab 1" data-easing="ease" data-duration-in="300" data-duration-out="100" className="tabs w-tabs">
<div className="tabs-menu w-tab-menu" style={{ maxHeight: "50vh", overflowY: "auto" }}>
<div className="tabs-menu w-tab-menu" style={{ maxHeight: "70vh", overflowY: "auto" }}>
{tabData.map((tab, idx) => (
<a
key={tab.label}

View File

@ -396,3 +396,11 @@ input.input-receiver:focus {
width: auto;
object-fit: contain; /* или cover */
}
.tabs-menu.w-tab-menu {
scrollbar-width: none;
-ms-overflow-style: none;
}
.tabs-menu.w-tab-menu::-webkit-scrollbar {
display: none;
}