forked from HoangLaoTa/gk_se_web_report
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
.box-chart-container {
|
|
padding: 1.6rem;
|
|
border-radius: 8px;
|
|
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
|
|
background-color: #fff;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.box-chart-title {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.box-chart-subtitle {
|
|
font-size: 1.8rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.doughnut-chart-content {}
|
|
|
|
.custom-button {
|
|
padding: 8px;
|
|
height: auto;
|
|
border-radius: 20px;
|
|
border: none;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
font-family: 'Myriadpro-SemiBold';
|
|
background-color: var(--button-bg-color);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
width: max-content;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.custom-button:hover {
|
|
background-color: #c07a05;
|
|
}
|
|
|
|
.button-disable {
|
|
cursor: not-allowed;
|
|
/* background: #70707070 !important; */
|
|
background: #c1c1c1 !important;
|
|
pointer-events: none;
|
|
}
|
|
.chart-container {
|
|
// max-width: 360px;
|
|
overflow-x: scroll;
|
|
height: 100%;
|
|
@media (max-width: 1750px) {
|
|
max-width: 300px;
|
|
}
|
|
}
|
|
} |