calculator(worked)

This commit is contained in:
aurinex
2025-07-10 17:23:04 +05:00
parent b88a2c4940
commit 1f6efd2def
9 changed files with 1315 additions and 484 deletions

View File

@ -72,7 +72,7 @@ const Header = () => {
display: "flex",
justifyContent: "center",
alignItems: "center",
height: isMobile ? "15vw" : "10vw",
height: isMobile ? "15vw" : "5vw",
gap: "2vw",
fontFamily: "Unbounded",
bgcolor: "#2D2D2D",
@ -95,7 +95,8 @@ const Header = () => {
onClick={() => handleScrollToAnchor("#main")}
sx={{
width: isMobile ? "17vw" : "9vw",
height: isMobile ? "17vw" : "9vw",
height: isMobile ? "6vw" : "2.8vw",
mb: "0.5vw",
cursor: "pointer",
"&:hover": { scale: 1.1 },
transition: "all 0.4s ease",
@ -152,7 +153,7 @@ const Header = () => {
</Box>
{/* Пустой блок для компенсации фиксированного хедера */}
<Box sx={{ height: isMobile ? "15vw" : "10vw" }} />
<Box sx={{ height: isMobile ? "15vw" : "5vw" }} />
{/* Мобильное меню */}
<Drawer anchor="right" open={drawerOpen} onClose={toggleDrawer(false)}>