Skip to content

Commit 1cd99d4

Browse files
authored
resolves #86 only apply z-index to nav on desktop (PR #87)
1 parent a8b3e88 commit 1cd99d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/css/footer.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ footer.footer {
66
padding: 2rem 1rem;
77
display: flex;
88
flex-direction: column;
9-
position: relative;
10-
z-index: var(--z-index-footer);
119
}
1210

1311
.footer p {
@@ -104,6 +102,8 @@ footer.footer {
104102
@media screen and (min-width: 1024px) {
105103
footer.footer {
106104
flex-direction: row;
105+
position: relative;
106+
z-index: var(--z-index-footer);
107107
}
108108

109109
.footer-legal {

0 commit comments

Comments
 (0)