cal save buttons (no functionality)
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user