фикс разметки на 992 ширине устройства

This commit is contained in:
Данил 2024-09-25 14:47:27 +03:00
parent f45303dc2d
commit e030b60978

View file

@ -83,7 +83,6 @@ img {
@media (min-width: 992px) { @media (min-width: 992px) {
html, body { html, body {
height: 100%; height: 100%;
overflow: hidden;
} }
* { * {
@ -92,13 +91,15 @@ img {
box-sizing: border-box; box-sizing: border-box;
} }
.wallpaper-img { .wallpaper-img{
height: 100%; width: 30%;
border-radius: 16px; border-radius: 16px;
display: flex; display: block;
margin-left: auto;
margin-right: auto;
object-fit: cover; object-fit: cover;
} }
.wallpaper { .wallpaper {
display: flex; display: flex;
height: 100vh; height: 100vh;
@ -126,6 +127,10 @@ img {
width: 100%; width: 100%;
} }
.wallpaper-text {
display: flex;
flex-direction: column;
}
} }
@media (min-width: 1200px) { @media (min-width: 1200px) {