Feat: use boxed for createMonth

This commit is contained in:
2021-08-12 09:48:30 +02:00
parent a61fe7e10c
commit 8f32f5b1b9
3 changed files with 22 additions and 32 deletions

View File

@@ -2,24 +2,20 @@ body {
background-color: whitesmoke;
}
.actions {
display: inline-flex;
flex-direction: column;
width: 120px;
}
button {
color: white;
padding: 15px 32px;
padding: 4px;
box-shadow: 1px 1px 2px gray;
text-align: center;
display: inline-block;
width: 100%;
font-size: 16px;
border-radius: 5px;
background-color: white;
margin-top: 5px;
font-size: 0.8em;
width: auto;
transition: all 0.2s ease-out;
}
}
button:hover {
transition: all 0.2s ease-out;
}
@@ -56,6 +52,13 @@ button:hover {
background-color: white;
}
.boxed-green {
box-shadow: 2px 2px 5px gray;
border-left: 1rem solid green;
border-radius: 10px;
background-color: white;
}
.hightlights {
display: grid;
grid-template-columns: repeat(3, 1fr);