From 8c8568f895c5841289d40657ef872f29c6718151 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Mon, 26 Aug 2024 14:23:05 +0400 Subject: [PATCH] [fix] styles --- .../event-calendar/event-calendar.component.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/event-calendar/event-calendar.component.css b/src/app/event-calendar/event-calendar.component.css index c0fe6b1..7501be5 100644 --- a/src/app/event-calendar/event-calendar.component.css +++ b/src/app/event-calendar/event-calendar.component.css @@ -1,7 +1,15 @@ +/* import Event Calendar styles */ @import "@dhx/trial-eventcalendar/dist/event-calendar.css"; +/* specify styles for initial page */ +html, +body { + margin: 0; + padding: 0; + height: 100%; +} + +/* specify styles for the Event Calendar container */ .widget { - position: relative; - width: 100%; - height: 100%; + height: 100%; }