animated-charts
Version:
Animated chart web components for all frameworks (React, Angular, Vue, HTML)
32 lines • 519 B
CSS
.bar-chart {
display: flex;
align-items: flex-end;
width: 100%;
height: 100%;
}
.bar-container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
margin: 0 4px;
}
.bar {
width: 24px;
border-radius: 6px 6px 0 0;
min-height: 4px;
}
.bar-label {
margin-top: 8px;
font-size: 12px;
color: #6b7280;
}
.bar-chart-wrapper {
width: 100%;
}
.chart-title {
text-align: center;
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 0.5rem;
}