Set up CV base layout
This commit is contained in:
parent
098b8b8e0d
commit
04d1096d2e
4 changed files with 34 additions and 9 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
width: $content-width-m;
|
||||
|
||||
.home__gallery-item {
|
||||
display: table;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue