We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5292066 commit f96d2f8Copy full SHA for f96d2f8
public/css/main.css
@@ -6,3 +6,7 @@
6
display: grid;
7
height: 100%;
8
}
9
+
10
+#calendar {
11
+ height: 800px;
12
+}
public/js/main.js
@@ -168,7 +168,6 @@ const loadCalendar = async () => {
168
})
169
;
170
171
- document.querySelector('#calendar').style.height = '800px';
172
document.querySelector('#calendarToday').onclick = () => { calendar.today(); };
173
document.querySelector('#calendarNext').onclick = () => { calendar.next(); };
174
document.querySelector('#calendarPrevious').onclick = () => { calendar.prev(); };
0 commit comments