fix: course and student interactions in class

This commit is contained in:
Jannat Patel
2023-05-16 16:14:13 +05:30
parent 1df6319164
commit ae42828771
10 changed files with 183 additions and 199 deletions

View File

@@ -124,7 +124,7 @@ textarea.field-input {
border-bottom: none;
}
.level {
.outline-lesson .level {
justify-content: start;
}
@@ -526,24 +526,6 @@ input[type=checkbox] {
margin: 0.25rem 0;
}
.button {
border-radius: var(--border-radius);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
padding: 0.25rem 1.25rem;
font-size: var(--text-md);
line-height: 20px;
box-shadow: var(--btn-shadow);
border: none;
width: fit-content;
}
.button:disabled {
cursor: not-allowed;
}
.wide-button {
padding: 0.3rem 4rem;
width: 100%;
@@ -555,35 +537,6 @@ input[type=checkbox] {
}
}
.is-secondary {
background: #FFFFFF;
color: var(--gray-900);
}
.is-secondary:hover {
text-decoration: none;
color: var(--gray-900);
}
.is-default {
background: var(--gray-100);
color: var(--gray-900);
}
.is-default:disabled {
color: var(--gray-500);
}
.is-primary {
background: var(--primary-color);
color: #FFFFFF;
}
.is-primary:hover {
text-decoration: none;
color: #FFFFFF;
}
.course-home-page .course-home-outline {
padding-bottom: 4rem;
}
@@ -2194,3 +2147,11 @@ select {
background-color: var(--red-50);
}
.list-row {
border-bottom: 1px solid var(--gray-300);
padding: 0.75rem 0;
}
.list-row:last-child {
border-bottom: none;
}