34 lines
502 B
CSS
34 lines
502 B
CSS
.chart {
|
|
height: 100%;
|
|
}
|
|
|
|
.gridList {
|
|
margin-top: 12px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
/* grid-auto-row: ; */
|
|
gap: 6px;
|
|
}
|
|
|
|
.listItem {
|
|
border-radius: 2px;
|
|
padding: 9px 0;
|
|
text-align: center;
|
|
color: #fff;
|
|
box-shadow: inset 0 0 16px 4px rgba(255, 255, 255, 0.197);
|
|
}
|
|
.headWidget {
|
|
position: absolute;
|
|
top: 22px;
|
|
right: 24px;
|
|
height: 32px;
|
|
width: 410px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
color: #fff;
|
|
}
|
|
.relative {
|
|
position: relative;
|
|
}
|