give a static height to the page header
All checks were successful
Build the docker image for the frontend application / build (push) Successful in 27s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-07-24 18:45:09 +03:00
parent 13a703352b
commit 91a11e4611

View File

@@ -17,10 +17,11 @@
justify-content: space-between;
align-items: end;
background: var(--transparent);
height: 250px;
}
header div {
padding: 100px 40px 10px 40px;
padding: 0 40px 10px 40px;
color: var(--color);
font-size: var(--size-6);
font-family:
@@ -50,10 +51,20 @@
header img {
width: 220px;
padding: 50px 50px 0 50px;
padding: 0 50px;
}
@media only screen and (max-width: 900px) {
header {
height: 180px;
justify-content: center;
align-items: center;
}
header div {
padding: 30px 20px 20px 20px;
}
header img {
display: none;
}