We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0daac commit 5b29968Copy full SHA for 5b29968
src/pages/calendar/calendar.less
@@ -37,12 +37,18 @@
37
text-align: left;
38
}
39
40
- tbody tr th {
+ tbody tr td:nth-child(2) {
41
font-weight: 600;
42
43
+
44
+ tbody tr td,
45
+ tbody tr th {
46
+ vertical-align: middle;
47
+ }
48
49
a {
50
font-size: unset;
51
+ white-space: nowrap;
52
53
54
src/pages/calendar/components/Task.tsx
@@ -36,7 +36,7 @@ function Task(props: TaskT) {
36
return <tr>
<td align={"center"}>{format(props.deadline, 'dd.MM.yyyy')}</td>
- <th align={"left"}>{props.title}</th>
+ <td align={"left"}>{props.title}</td>
<td>{responsible}</td>
<td>{targets}</td>
<td align={"center"}>{chapters}</td>
0 commit comments