This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/components/post-graph.css
2024-04-15 13:22:07 -07:00

25 lines
No EOL
441 B
CSS

.post-graph {
margin-top: var(--sizing-base);
margin-bottom: var(--sizing-base);
& .wrapper {
display: flex;
align-items: center;
height: var(--sizing-3xl);
margin-bottom: var(--sizing-sm);
& .year {
font-family: var(--font-mono);
}
& .progress {
background-color: var(--accent-color);
height: 100%;
}
& .progress,
& .data {
margin-left: var(--sizing-sm);
}
}
}