95 lines
1.5 KiB
SCSS
95 lines
1.5 KiB
SCSS
@use '../../../../styles/variables' as *;
|
|
@use '../../../../styles/font' as *;
|
|
|
|
.performance-chart {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 252px;
|
|
|
|
@media (min-width: 1280px) and (max-width: $xxl) {
|
|
height: 280px;
|
|
}
|
|
|
|
&__header {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
&-title {
|
|
font-size: $fs-regular;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
line-height: 40px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
&-header {
|
|
display: flex;
|
|
|
|
&-item {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-right: 16px;
|
|
|
|
&-icon {
|
|
border-radius: 50%;
|
|
width: 5px;
|
|
height: 5px;
|
|
}
|
|
|
|
&-text {
|
|
margin-left: 8px;
|
|
color: $grey;
|
|
font-size: $fs-small;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&__progress-title {
|
|
margin: 20px 0 5px 0;
|
|
font-weight: 400;
|
|
font-size: $fs-normal;
|
|
color: $grey;
|
|
}
|
|
|
|
&__progress-bar {
|
|
margin-bottom: 8px;
|
|
|
|
@media ($small) {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.blue {
|
|
background-color: $blue;
|
|
}
|
|
|
|
.pink {
|
|
background-color: $pink;
|
|
}
|
|
|
|
.green {
|
|
background-color: $green;
|
|
}
|
|
|
|
.yellow {
|
|
background-color: $yellow;
|
|
}
|