Merge pull request 'feat: enhance responsive styles for title, subtitle, and buttons in Home component' (#5) from Fixing-home-modal into main

Reviewed-on: #5
This commit was merged in pull request #5.
This commit is contained in:
2025-05-22 13:55:18 +00:00
2 changed files with 43 additions and 1 deletions
+43
View File
@@ -185,3 +185,46 @@
opacity: 0;
}
}
// Style for phone
@media (max-width: 992px) {
.title-main {
font-size: 3rem;
}
}
@media (max-width: 768px) {
.hero {
height: 100vh;
padding-top: 50px;
}
.titleMain {
font-size: 2rem;
}
.subtitle {
font-size: 1.4rem;
}
.btnPrimary {
padding: 0.5rem 1.5rem;
font-size: 1.2rem;
}
}
@media (max-width: 576px) {
.title-main {
font-size: 2rem;
}
.subtitle {
font-size: 1rem;
}
.btn-primary {
padding: 0.6rem 1.5rem;
font-size: 0.9rem;
}
}
-1
View File
@@ -103,7 +103,6 @@ body::before {
background-color: $primary-dark;
padding: 3rem 0;
border-top: 1px solid rgba(255, 100, 0, 0.2);
margin-top: 5rem;
}
.social-links {