Skip to content
Snippets Groups Projects
Commit 68355bbd authored by Sreeram, Sudarshan's avatar Sreeram, Sudarshan :carrot:
Browse files

Change the track height and add text wrapping

parent 7bc4735b
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,9 @@
.eventTitle {
color: var(--tutorial-text);
font-size: 1rem;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.tutorialEvent {
......@@ -30,4 +33,4 @@
.courseworkEvent .eventTitle{
color: var(--coursework-text);
}
\ No newline at end of file
}
......@@ -118,7 +118,7 @@ class Timeline extends React.Component<TimelineProps, TimelineState> {
render() {
const [termStart, numWeeks] = getTermDates(this.props.term);
const activeDay = new Date("2020-10-12");
const trackHeight = 4;
const trackHeight = 3.25;
if (!this.state.isLoaded) {
return <LoadingScreen successful={<></>} />;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment