IO-1130 Update schedule job modal styles.

This commit is contained in:
Patrick Fic
2021-06-21 09:22:24 -07:00
parent 1f59d114e8
commit 0b2584e2f1
2 changed files with 12 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ import EmailInput from "../form-items-formatted/email-form-item.component";
import LayoutFormRow from "../layout-form-row/layout-form-row.component";
import ScheduleDayViewContainer from "../schedule-day-view/schedule-day-view.container";
import ScheduleExistingAppointmentsList from "../schedule-existing-appointments-list/schedule-existing-appointments-list.component";
import "./schedule-job-modal.scss";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
});
@@ -170,7 +170,7 @@ export function ScheduleJobModalComponent({
const values = form.getFieldsValue();
return (
<div style={{ height: "70vh" }}>
<div className="schedule-job-modal">
<ScheduleDayViewContainer day={values.start} />
</div>
);

View File

@@ -0,0 +1,10 @@
.schedule-job-modal {
height: 70vh;
.rbc-calendar {
.rbc-toolbar {
.rbc-btn-group {
display: none;
}
}
}
}