fix: class improvements

This commit is contained in:
Jannat Patel
2023-06-23 20:16:48 +05:30
parent 3d8237008f
commit 99f1a8dfc3
15 changed files with 463 additions and 200 deletions

View File

@@ -374,10 +374,18 @@ input[type=checkbox] {
.course-card-title {
font-weight: 600;
color: var(--gray-900);
margin-bottom: 1.25rem;
font-size: 1.125rem;
}
.short-introduction {
text-overflow: ellipsis;
width: 100%;
overflow: hidden;
white-space: nowrap;
margin-bottom: 1.25rem;
}
.card-divider {
border-top: 1px solid var(--gray-300);
margin-bottom: 1rem;
@@ -1385,6 +1393,10 @@ pre {
margin: 0 1rem;
}
.seperator::after {
content: "\00B7";
}
.course-overlay-card {
background-color: white;
border-radius: var(--border-radius-lg);
@@ -1890,6 +1902,14 @@ li {
padding: 0 1rem !important;
}
.modal-dialog-scrollable .modal-body {
overflow-y: unset;
}
.modal-dialog-scrollable .modal-content {
overflow: unset;
}
.modal-header, .modal-body {
margin-bottom: 0.5rem !important;
}
@@ -2167,4 +2187,10 @@ select {
.awesomplete ul li:last-child {
display: none;
}
.students-parent {
display: grid;
grid-template-columns: repeat(auto-fill, 150px);
grid-gap: 1rem;
}