mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-02-14 21:10:41 +01:00
24 lines
567 B
CSS
24 lines
567 B
CSS
.projectTechstack ul {
|
|
padding: 0;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: calc(var(--spacer) / 2);
|
|
}
|
|
|
|
.projectTechstack li {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: calc(var(--spacer) / 4);
|
|
text-align: center;
|
|
background: var(--box-background-color);
|
|
border-radius: var(--border-radius);
|
|
border: 0.05rem solid transparent;
|
|
color: var(--text-color-light);
|
|
font-size: var(--font-size-small);
|
|
}
|
|
|
|
.title {
|
|
composes: metatitle from '../templates/Project.module.css';
|
|
}
|