Edit dividers
This commit is contained in:
parent
7aba18b56e
commit
e2b1064b1e
3 changed files with 21 additions and 10 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue