fix(@votingdapp) minor css fix for calendar height

This commit is contained in:
Richard Ramos 2019-01-16 18:20:03 -04:00
parent 843541f0e0
commit 52b31bef34
2 changed files with 9 additions and 1 deletions

View File

@ -156,7 +156,7 @@ class PollSchedule extends Component {
<Typography variant="body1" style={{marginTop: '20px'}}>Set the end date and time for the poll.</Typography>
<div>
<InfiniteCalendar
height={`calc(100vh - 230px)`}
height={200}
className="schedule-calendar"
Component={CalendarWithRange}
min={today}

View File

@ -927,3 +927,11 @@ button[disabled]{
width: 80vw;
max-width: 320px;
}
.Cal__MonthList__root {
height: calc(100vh - 230px) !important;
}
.Cal__Month__rows {
background: none !important;
}