This commit is contained in:
root
2026-05-26 23:14:55 -04:00
parent 5ed65a867c
commit c294d7bed7
38 changed files with 277 additions and 146 deletions
+9 -3
View File
@@ -321,12 +321,18 @@ color: #080808;
.navbar-logo {
height: 80px !important;
width: auto !important;
object-fit: contain;
height: 50px !important;
width: 50px !important;
object-fit: cover;
border-radius: 50%;
margin-right: 1rem;
}
.school-logo-circle {
border-radius: 50%;
object-fit: cover;
}
.logout-btn {
font-weight: bold;
+3
View File
@@ -22,6 +22,9 @@ html {
.logo {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
}
@@ -22,9 +22,10 @@ body {
}
.modal-header .logo {
width: 100%;
max-width: 200px;
height: auto;
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 10px;
}
+4 -1
View File
@@ -125,7 +125,10 @@ body.centered {
}
.logo {
width: 200px;
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
}
+4 -2
View File
@@ -31,8 +31,10 @@ body {
}
.left-side .logo {
max-width: 100%;
height: auto;
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-top: 10px;
}
+8 -8
View File
@@ -1,22 +1,22 @@
.left-side .logo {
width: 100%;
max-width: 300px;
/* Adjustable maximum size */
height: auto;
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
.left-side .logo {
max-width: 300px;
/* Reduce size on smaller screens */
width: 90px;
height: 90px;
}
}
@media (max-width: 480px) {
.left-side .logo {
max-width: 150px;
/* Further reduce size for very small screens */
width: 70px;
height: 70px;
}
}