removed the necessity for hardcoded line height variables

This commit is contained in:
Sriram Hariharan
2023-03-08 21:12:14 -06:00
parent c1910bacb0
commit 7dd53f3a94
8 changed files with 57 additions and 68 deletions

View File

@@ -18,8 +18,19 @@
.title {
display: flex;
align-items: center;
margin-right: 40px;
.courseName {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
// underline
}
.uniqueId {
flex: 1;
margin-left: 8px;
}
}
@@ -27,4 +38,8 @@
.instructors {
margin-top: 8px;
}
.meeting {
margin-top: 8px;
}
}