✔ Add small linear gradient to footer similar to Sacred Heart Joliet accordions
Completed by Kyle S.
- Assigned to
-
Kyle S.
- Notes
-
- gradient at top of footer thats darker like this one
I added the following to /sass/primary/footers/_footer.scss.
&::before, &::after { position: absolute; content: ""; width: 100%; height: 4px; left: 0; } &::before { background: linear-gradient(0deg, rgba($tertiary, 0.25) 0%, $primary 100%); top: 0; } &::after { background: linear-gradient(0deg, $primary 0%, rgba($tertiary, 0.25) 100%); bottom: 0; }