Calendar.css 950 Bytes
.Month,
.Week {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.Grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  overflow-y: scroll;
  height: calc(100vh - 115px);
  border: solid thin gray;
}

.Row {
  display: flex;
  overflow-y: scroll;
  height: calc(100vh - 115px);
  border: solid thin gray;
}

.Day {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: scroll;
  height: calc(100vh - 80px);
  border: solid thin gray;
  margin-top: 5px;
}

/* Common  */

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

.GridItem {
  border: solid thin lightgray;
  display: flex;
  flex-direction: column;
  /* height: 150px; */
  padding: 5px;
}

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

.GridHead {
  display: flex;
}

.GridHead {
  margin-right: 16.8px;
}

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