downloads-graph
Version:
A reusable React component to visualize npm download stats using Chart.js.
22 lines (19 loc) • 474 B
CSS
.downloads-chart-container {
position: relative;
width: 100%;
height: 300px; /* ✅ Default height for all screen sizes */
padding: 0.5rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
background: white;
}
@media (min-width: 640px) {
.downloads-chart-container {
height: 400px;
}
}
@media (min-width: 1024px) {
.downloads-chart-container {
height: 500px;
}
}