35 lines
877 B
CSS
35 lines
877 B
CSS
/* Enter your custom styles here */
|
|
.dashboardCardReservation,
|
|
.dashboardCardRevenue {
|
|
padding: 1.5rem !important;
|
|
}
|
|
.dashboardCardReservation {
|
|
background-color: #b5f488e1; /* blue background */
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
color: white; /* text color */
|
|
box-shadow: 0 2px 4px #ffffff26;
|
|
width: 50%;
|
|
height: auto;
|
|
}
|
|
.dashboardCardRevenue {
|
|
background-color: #67befcce; /* blue background */
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
color: white; /* text color */
|
|
box-shadow: 0 2px 4px #ffffff26;
|
|
width: 50%;
|
|
height: auto;
|
|
}
|
|
|
|
.dashboardCardFontLarge {
|
|
font-size: 1.4rem !important; /* or any size you want */
|
|
font-weight: bold; /* optional */
|
|
height:auto;
|
|
}
|
|
|
|
.dashboardCardFontSmall{
|
|
font-size: 0.7rem !important; /* or any size you want */
|
|
font-weight: bold; /* optional */
|
|
height: auto;
|
|
} |