added very small screens
All checks were successful
Copy Files to Samba Share dev / Copy Files (push) Successful in 25s

This commit is contained in:
2024-11-07 21:27:09 +01:00
parent ae6b10d18e
commit 5c5fef5df5
3 changed files with 24 additions and 1 deletions

View File

@@ -37,6 +37,21 @@ img {
}
.slogan {
font-size: 2rem;
text-align: center;
}
:host {
padding: 7rem 0;
}
}
@media only screen and (max-width: $very-small-screen) {
h1 {
font-size: 2rem;
}
.slogan {
font-size: 1.5rem;
text-align: center;
}
:host {

View File

@@ -44,5 +44,12 @@
height: 100%;
}
}
}
@media only screen and (max-width: $very-small-screen) {
.service {
h2 {
font-size: 1rem;
}
}
}

View File

@@ -1 +1,2 @@
$small-screen: 50rem;
$very-small-screen: 25rem;