feat: show notifications from logs

This commit is contained in:
Jannat Patel
2022-09-27 18:13:46 +05:30
parent a6156ec863
commit a291d73828
11 changed files with 129 additions and 47 deletions

View File

@@ -1399,15 +1399,17 @@ pre {
}
.lms-nav .nav-link {
color: var(--text-muted);
padding: var(--padding-md) 0;
padding: var(--padding-sm) 0;
margin: 0 var(--margin-md);
font-size: var(--text-base);
color: var(--text-muted);
}
.lms-nav .nav-link.active {
font-weight: 600;
border-bottom: 1px solid var(--primary);
color: var(--text-color);
font-weight: 500;
border-bottom: 1px solid var(--primary-color);
color: var(--primary-color);
}
@media (min-width: 500px) {
@@ -1416,10 +1418,6 @@ pre {
}
}
.lms-nav .nav-link:hover {
color: inherit;
}
.dashboard-button {
position: relative;
top: -50px;
@@ -1708,3 +1706,23 @@ li {
width: 2.75rem;
height: 2.75rem;
}
.modal .comment-field {
height: 150px !important;
resize: auto !important;
}
.notification-card {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
position: relative;
}
.notification-card:last-child {
margin-bottom: 0;
}
.timestamp {
font-size: var(--text-xs);
}