chore: resolved conflicts

This commit is contained in:
Jannat Patel
2023-08-24 22:17:45 +05:30
2 changed files with 54 additions and 14 deletions

View File

@@ -2300,4 +2300,41 @@ select {
.class-overlay {
top: 30%;
}
.course-list-menu {
display: flex;
align-items: center;
float: right;
}
.course-list-buttons {
display: flex;
}
.course-list-buttons .btn {
margin-left: 0.5rem;
}
@media (max-width: 767px) {
.course-list-menu {
float: none;
margin-bottom: 1rem;
}
}
@media (max-width: 576px) {
.course-list-menu {
flex-direction: column;
align-items: unset;
}
.course-list-buttons {
margin-top: 1rem;
justify-content: space-between;
}
.course-list-buttons .btn {
margin-left: 0;
}
}