Month.css 591 Bytes
.Month {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.GridItem,
.GridHeadItem {
  flex-basis: 100px;
  flex-grow: 1;
}

.GridItem {
  border: solid thin lightgray;
  height: 150px;
  padding: 5px;
}

.GridHeadItem {
  height: 30px;
  text-align: center;
  line-height: 30px;
  padding: 10px 5px 10px 5px;
}

.GridRow,
.GridHead {
  display: flex;
}

.GridHead {
  margin-right: 16.8px;
}

.Grid {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: calc(100vh - 85px - 50px);
  border: solid thin gray;
}

.GridItem[relative] > span {
  color: gray;
}