mirror of
https://github.com/danbee/cv
synced 2025-03-04 08:59:12 +00:00
33 lines
492 B
SCSS
33 lines
492 B
SCSS
.content {
|
|
@media (min-width: 640px) {
|
|
display: grid;
|
|
grid-template-rows: 0fr 0fr 1fr;
|
|
grid-template-columns: 2fr 1fr;
|
|
grid-template-areas:
|
|
"profile contact"
|
|
"experience skills"
|
|
"experience interests";
|
|
grid-gap: 0 7%;
|
|
}
|
|
|
|
&__profile {
|
|
grid-area: profile;
|
|
}
|
|
|
|
&__contact {
|
|
grid-area: contact;
|
|
}
|
|
|
|
&__skills {
|
|
grid-area: skills;
|
|
}
|
|
|
|
&__experience {
|
|
grid-area: experience;
|
|
}
|
|
|
|
&__interests {
|
|
grid-area: interests;
|
|
}
|
|
}
|