24 lines
265 B
CSS
24 lines
265 B
CSS
.stats-sidebar {
|
|
|
|
&.active {
|
|
display: flex;
|
|
}
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
padding: 1rem;
|
|
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|