Commit 67de097e by Samuel Taniel Mulyadi

Merge branch 'sam' into 'staging'

responsive jadwal

See merge request !6
2 parents a807bcd2 8a050591
Showing with 38 additions and 1 deletions
......@@ -275,6 +275,8 @@ function calculateRowSpan(start: string, end: string) {
display: flex;
justify-content: space-between; /* Pushes elements to the left & right */
inline-size: 100%; /* Ensures full width */
text-overflow: ellipsis; /* Adds "..." when text is too long */
word-break: break-word; /* Allows text to wrap naturally */
}
.time {
......@@ -283,13 +285,48 @@ function calculateRowSpan(start: string, end: string) {
}
.room {
overflow: hidden;
font-weight: normal;
text-align: end; /* Aligns room to the right */
text-overflow: ellipsis;
}
.building {
font-weight: normal;
opacity: 0.8;
text-align: end; /* Aligns room to the right */
text-align: start; /* Aligns room to the right */
}
@media screen and (max-width: 1200px) {
.course-title {
border-block-end: 0 solid;
}
.course-header {
overflow-x: hidden; /* Hides horizontal overflow */
text-overflow: ellipsis; /* Adds "..." when text is too long */
word-break: break-word; /* Allows text to wrap naturally */
}
.building,
.time {
display: none;
}
}
@media screen and (max-width: 900px) {
.course-title {
border-block-end: 0 solid;
}
.room {
text-align: start;
}
}
@media screen and (max-width: 600px) {
.room {
display: none;
}
}
</style>
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!