Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
Add min width for desktop
  • Loading branch information
20syldev committed May 16, 2024
1 parent 7d51d2f commit 526b235
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions src/css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mobile */
@media (max-width: 1080px) {
/* Styles mobiles */
h1 {
font-size: 5vh;
}
Expand All @@ -8,12 +8,14 @@
}
}

/* Styles Desktop */
h1 {
font-size: 4vw;
}
h3 {
font-size: 2vw;
/* Desktop */
@media (min-width: 1080px) {
h1 {
font-size: 4vw;
}
h3 {
font-size: 2vw;
}
}

/* Page de connexion */
Expand Down Expand Up @@ -223,11 +225,11 @@ label.remember {
}

@keyframes checkAnim {
0% {
height: 0;
}
0% {
height: 0;
}

100% {
height: 10px;
}
100% {
height: 10px;
}
}

0 comments on commit 526b235

Please sign in to comment.