доделал

This commit is contained in:
Kirill Pet
2024-10-09 03:46:14 +03:00
parent 36ea891f36
commit 9703ff5569
5 changed files with 141 additions and 121 deletions

View File

@@ -446,7 +446,7 @@ button{
/* breadcrumbs */
.breadcrumbs{
margin: 24px;
margin: 96px 24px 24px;
display: flex;
align-items: center;

View File

@@ -6,6 +6,13 @@
position: relative;
background-color: var(--background-white);
position: fixed;
left: 0;
top: 0;
right: 0;
z-index: 200;
}
.header::after{
content: '';
@@ -78,6 +85,9 @@
width: 100%;
height: 100%;
}
.header__logo-white{
display: none;
}
.header__menu-block{
position: absolute;
@@ -238,11 +248,14 @@
text-decoration: none;
}
.header.white{
background-color: thistle;
/* background-color: thistle; */
}
.header.white .header__logo-black{
display: none;
}
.header.white .header__logo-white{
display: block;
}
.header.white .main-menu__link{
color: var(--text-white);
}