Merge branch 'main' of https://github.com/frappe/lms into lms-frappe-ui

This commit is contained in:
Jannat Patel
2023-12-12 14:58:45 +05:30
4 changed files with 79 additions and 24 deletions

View File

@@ -2387,6 +2387,7 @@ select {
border: 1px solid var(--gray-200) !important;
border-radius: var(--border-radius-md) !important;
background-color: var(--gray-100) !important;
overflow: auto;
}
.toastui-calendar-panel .toastui-calendar-day-names.toastui-calendar-week {
@@ -2442,13 +2443,23 @@ select {
}
.calendar-legends {
display: flex;
align-items: center;
justify-content: space-between;
width: 50%;
display: grid;
grid-template-columns: repeat(4, 1fr);
width: 75%;
margin: 0 auto 1rem;
}
@media (max-width: 767px) {
.calendar-legends {
grid-template-columns: repeat(2, 1fr);
width: 100%;
}
.legend-item {
margin-bottom: 0.5rem;
}
}
.batch-details {
width: 50%;
margin: 2rem 0;