pravki 27.06 #2

Merged
egortriston merged 1 commits from pravki into main 2025-06-27 18:24:39 +03:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit fb8c1d3dfa - Show all commits

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

@ -395,4 +395,12 @@ input.input-receiver:focus {
height: 100%;
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;
}