Some CSS flex fixes

This commit is contained in:
2022-07-12 11:17:03 +03:00
parent 9f88b2c7b8
commit 5a97fc131d
4 changed files with 51 additions and 46 deletions
@@ -12,10 +12,6 @@ table.month, table.month th, table.month td {
background: gainsboro;
}
table.month th {
text-align: center;
}
table.month td {
text-align: right;
}
@@ -30,15 +26,14 @@ table.month th.subtitle {
font-weight: normal;
}
div.month {
display: inline-flex;
flex-direction: row;
justify-content: space-between;
div.calendar {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
table.month {
margin: 10px;
width: 300px;
max-width: 300px;
border-radius: 10px;
width: 350px;
max-width: 350px;
}