This commit is contained in:
2026-01-25 11:20:49 +05:45
parent 29ffdea945
commit 06baa47e11
2 changed files with 27 additions and 9 deletions

View File

@@ -13614,12 +13614,7 @@ Primary style
}
}
@media only screen and (max-width: 767px) {
.header-top-bar .header-right {
justify-content: center;
margin-top: 6px;
}
}
@media only screen and (max-width: 767px) {}
.header-top-bar .header-right .address-content {
display: flex;
@@ -23440,6 +23435,14 @@ iframe {
.tmp-newsletter-default .tmp-newsletter {
display: block;
}
}
@media only screen and (min-width: 575px) {
.header__top-cta {
display: flex;
justify-content: center;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
@@ -23542,10 +23545,18 @@ iframe {
align-items: flex-start;
}
.header-top-bar .header-right {
display: none;
}
.social-default {
justify-content: center;
}
.footer-social .social-default {
justify-content: start;
margin-bottom: 12px;
}
.band-card {
width: 100% !important;
@@ -23621,6 +23632,13 @@ iframe {
margin: 8px;
}
@media only screen and (min-width: 767px) {
.header__top-cta {
display: flex;
justify-content: center;
}
}
@media only screen and (max-width: 767px) {
.tmp-pagination li {
margin: 4px;
@@ -38122,13 +38140,13 @@ section {
/* Tablet */
@media (max-width: 1024px) {
.college-grid {
grid-template-columns: repeat(5, 1fr);
grid-template-columns: repeat(3, 1fr);
}
}
/* Mobile */
@media (max-width: 768px) {
.college-grid {
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(2, 1fr);
}
}