Skip to content

Commit

Permalink
Merge pull request #17 from mxfo/pr/minisite-unfix-footer
Browse files Browse the repository at this point in the history
[minisite] remove fixed footer
  • Loading branch information
fpapon authored May 14, 2024
2 parents b8c1634 + 38a25a7 commit e86daf6
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,11 @@
}

body {
min-height: 100vh;
height: 100% !important;
display: flex;
padding-top: 70px !important;
flex-direction: column;
}

main {
Expand Down Expand Up @@ -860,11 +863,14 @@ p a > code:hover {
}

.footer {
height: 120px;
display: flex;
height: fit-content;
justify-content: space-evenly;
margin-top: auto;
position: unset;
bottom: unset;
padding-top: 30px;
padding-bottom: 20px;
position: fixed;
bottom: 0;
width: 100%;
}

Expand Down Expand Up @@ -2667,7 +2673,7 @@ div.anchors > div {
.page {
display: flex;
justify-content: center;
margin-bottom: 130px;
margin-bottom: 80px;
}
caption {
color: #74B5FC !important;
Expand Down

0 comments on commit e86daf6

Please sign in to comment.