Set up CV base layout

This commit is contained in:
Paul Nicoué 2025-06-03 19:36:13 +02:00
parent 098b8b8e0d
commit 04d1096d2e
4 changed files with 34 additions and 9 deletions

View file

@ -6,5 +6,27 @@
.cv {
.cv__content {}
.cv__content {
display: grid;
grid-template-columns: auto 1fr;
column-gap: 0.5rem;
row-gap: 1rem;
max-width: $content-width-s;
h2 {
grid-column: 1 / span 2;
}
h3 {
grid-column: 1 / span 1;
}
p {
grid-column: 1 / span 2;
}
ul {
grid-column: 2 / span 1;
}
}
}

View file

@ -11,7 +11,6 @@
flex-direction: column;
align-items: center;
gap: 2rem;
width: $content-width-m;
.home__gallery-item {
display: table;