Edit dividers

This commit is contained in:
Paul Nicoué 2023-03-06 11:50:54 +01:00
parent 7aba18b56e
commit e2b1064b1e
3 changed files with 21 additions and 10 deletions

View file

@ -17,6 +17,7 @@
// --------------------------------------------------
.contact {
position: relative;
display: grid;
grid:
'header' auto
@ -26,6 +27,16 @@
place-items: start stretch;
row-gap: 4rem;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light), var(--primary-color));
}
&__header {
grid-area: header;
}