Make it look more like Minsuk's version.

This commit is contained in:
2021-05-16 21:33:49 -07:00
parent 3a237d0d0e
commit 69f8de7f2e
4 changed files with 54 additions and 40 deletions

View File

@@ -96,8 +96,8 @@ body {
.week-grid {
display: grid;
width: 100%;
height: 50vh;
grid-template-columns: auto repeat(7, 1fr);
height: 70vh;
grid-template-columns: auto repeat(5, 1fr);
grid-template-rows: auto repeat(10, 1fr);
}
@@ -107,13 +107,19 @@ body {
border-radius: 0.25rem;
padding: 0.25rem;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
&.selected {
border-style: dashed;
border-width: 2px;
}
p {
margin-top: 0.1rem;
margin-bottom: 0.1rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.column-container {