update responsive design

This commit is contained in:
Chneemann 2024-08-09 04:34:51 +02:00
parent 10ffea4412
commit 19d956ef6a
6 changed files with 80 additions and 2 deletions

View file

@ -53,3 +53,22 @@ form {
padding: 6px;
width: 57%;
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 550px) {
form {
flex-direction: column;
width: 90%;
input {
width: 100%;
}
}
.error-msg {
position: relative;
padding: 0;
height: 12px;
margin-bottom: 8px;
}
}

View file

@ -22,3 +22,13 @@ footer {
}
}
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 350px) {
footer {
a {
padding: 0 24px;
}
}
}

View file

@ -11,9 +11,12 @@
></app-btn-large>
</div>
} @else {
<div class="logo" routerLink="/">
<div class="logo-full" routerLink="/">
<img src="./../../../../assets/img/logo_full.svg" alt="" />
</div>
<div class="logo-mobile" routerLink="/">
<img src="./../../../../assets/img/logo_ci.svg" alt="" />
</div>
<div class="btn">
<app-btn-large [value]="'Log in'" routerLink="/login"></app-btn-large>
</div>

View file

@ -13,7 +13,9 @@ header {
z-index: 1;
}
.logo {
.logo,
.logo-full,
.logo-mobile {
cursor: pointer;
img {
filter: drop-shadow(1px 1px 3px $black);
@ -21,3 +23,23 @@ header {
height: 32px;
}
}
.logo-mobile {
display: none;
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 700px) {
header {
padding: 10px 24px;
}
.logo-full {
display: none;
}
.logo-mobile {
display: block;
}
}

View file

@ -48,3 +48,17 @@ section {
}
}
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 660px) {
.content {
padding: 43px 24px;
}
}
@media screen and (max-width: 600px) {
.content {
width: 80%;
}
}

View file

@ -44,3 +44,13 @@ form {
font-weight: 400 !important;
}
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 600px) {
form {
input {
width: 100%;
}
}
}