diff --git a/web/src/components/Calendar.jsx b/web/src/components/Calendar.jsx deleted file mode 100644 index e5f5d177c..000000000 --- a/web/src/components/Calendar.jsx +++ /dev/null @@ -1,26 +0,0 @@ -import { h } from 'preact'; -import { format } from 'date-fns'; - -export default function Calendar({ date, hours = 0, events = 0, selected = false }) { - const bg = selected ? 'bg-blue-500 bg-opacity-80' : 'bg-gray-500'; - return ( -
-
-
-
{format(date, 'MMM yyyy')}
-
- {format(date, 'd')} -
-
- {format(date, 'EEEE')} -
-
- - {hours} hrs, {events} events - -
-
-
-
- ); -} diff --git a/web/src/index.css b/web/src/index.css index 7f11122a0..d55a9aabc 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -25,11 +25,3 @@ transform: rotate(360deg); } } - -.vjs-playlist-modal { - position: absolute; - top: 0; - right: 0; - width: 33%; - height: 100%; -}