diff --git a/src/pages/admin/schedule-configuration/schedule-configuration.component.css b/src/pages/admin/schedule-configuration/schedule-configuration.component.css new file mode 100644 index 0000000..fd0c464 --- /dev/null +++ b/src/pages/admin/schedule-configuration/schedule-configuration.component.css @@ -0,0 +1,22 @@ +/* Основной контейнер */ +.container { + display: flex; + flex-wrap: wrap; + gap: 16px; +} + +.container > * { + flex: 1 1 calc(50% - 16px); + min-width: 0; +} + +.container > :first-child:nth-last-child(1), +.container > :first-child:nth-last-child(1) ~ * { + flex: 1 1 100%; +} + +@media (max-width: 1500px) { + .container > * { + flex: 1 1 100%; + } +} diff --git a/src/pages/admin/schedule-configuration/schedule-configuration.component.html b/src/pages/admin/schedule-configuration/schedule-configuration.component.html new file mode 100644 index 0000000..948bc73 --- /dev/null +++ b/src/pages/admin/schedule-configuration/schedule-configuration.component.html @@ -0,0 +1,8 @@ +
+

Конфигурация расписания

+ +
+ + +
+
diff --git a/src/pages/admin/schedule-configuration/schedule-configuration.component.ts b/src/pages/admin/schedule-configuration/schedule-configuration.component.ts new file mode 100644 index 0000000..6f55fbe --- /dev/null +++ b/src/pages/admin/schedule-configuration/schedule-configuration.component.ts @@ -0,0 +1,16 @@ +import { Component } from '@angular/core'; +import {CronUpdateScheduleComponent} from "@component/admin/cron-update-schedule/cron-update-schedule.component"; +import {SkipUpdateScheduleComponent} from "@component/admin/skip-update-schedule/skip-update-schedule.component"; + +@Component({ + selector: 'app-schedule-configuration', + imports: [ + CronUpdateScheduleComponent, + SkipUpdateScheduleComponent + ], + templateUrl: './schedule-configuration.component.html', + styleUrl: './schedule-configuration.component.css' +}) +export class ScheduleConfigurationComponent { + +}