calculator(worked)
This commit is contained in:
@ -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)}>
|
||||
|
Reference in New Issue
Block a user