diff --git a/src/app/features/schedule/schedule-day-panel/schedule-day-panel.component.html b/src/app/features/schedule/schedule-day-panel/schedule-day-panel.component.html index 7292856323..46e2e75229 100644 --- a/src/app/features/schedule/schedule-day-panel/schedule-day-panel.component.html +++ b/src/app/features/schedule/schedule-day-panel/schedule-day-panel.component.html @@ -7,7 +7,7 @@ >
diff --git a/src/app/features/schedule/schedule-week/schedule-week.component.scss b/src/app/features/schedule/schedule-week/schedule-week.component.scss index ee866725c1..92fbba92b7 100644 --- a/src/app/features/schedule/schedule-week/schedule-week.component.scss +++ b/src/app/features/schedule/schedule-week/schedule-week.component.scss @@ -88,11 +88,17 @@ color: var(--text-color); background: var(--bg-lighter); - &.minimal { + &.isInPanel { //border: 0; justify-content: center; border-top: 0; box-shadow: none; + background: transparent; + border: none; + + * { + border: none !important; + } .filler { display: none; diff --git a/src/app/features/schedule/schedule-week/schedule-week.component.ts b/src/app/features/schedule/schedule-week/schedule-week.component.ts index 44bd197e5e..77e53f61d5 100644 --- a/src/app/features/schedule/schedule-week/schedule-week.component.ts +++ b/src/app/features/schedule/schedule-week/schedule-week.component.ts @@ -66,7 +66,7 @@ export class ScheduleWeekComponent implements OnInit, AfterViewInit, OnDestroy { private _translateService = inject(TranslateService); private _defaultLocale = inject(LOCALE_ID); - isMinimalHeader = input(false); + isInPanel = input(false); events = input([]); beyondBudget = input([]); daysToShow = input([]);