cal save buttons (no functionality)

This commit is contained in:
Lukas Zenick
2024-02-17 15:15:24 -06:00
parent 851947db0b
commit 3878c7104e
4 changed files with 70 additions and 4 deletions

View File

@@ -22,9 +22,10 @@
}
.calendar {
// display: grid;
// grid-template-columns: auto repeat(5, 1fr);
display: flex;
flex-direction: column;
gap: 10px;
position: relative; // Ensuring that child elements can be positioned in relation to this.
}
.day {
@@ -89,3 +90,38 @@
line-height: normal;
}
}
.buttonContainer {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px; // Adjust the gap as needed
padding: 10px;
margin-top: auto;
}
.calendarButton {
display: flex;
align-items: center;
gap: 5px; // Space between icon and text
padding: 6px 6px;
border: none;
background-color: transparent;
color: #333; // Adjust based on your design
cursor: pointer;
&:hover {
background-color: rgba(0, 0, 0, 0.1); // Adjust hover effect as desired
}
}
.buttonIcon {
height: 24px; // Adjust size as needed
fill: currentColor;
}
.divider {
height: 30px; // Adjust height as needed
width: 1px;
background-color: grey; // Adjust color as needed
}