fix: #2668 Page Vertical Spacing Issues (#2863)

* fix: #2668 Page Vertical Spacing Issues

* Update test to reflect mobile work

* chore: refactor action buttons

---------

Co-authored-by: thisProjects <wibbet@wobbet.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
Nathan
2023-04-26 23:31:23 +01:00
committed by GitHub
parent b0a43526d8
commit 32c3f6a9b6
16 changed files with 282 additions and 304 deletions

View File

@@ -9,14 +9,20 @@
padding: 0.7rem var(--content-padding);
box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 10%);
background-color: var(--theme-color-background-header);
position: fixed;
top:0;
width: 100%;
z-index: 200;
h1 {
margin-top: unset;
margin-bottom: unset;
}
@include screen(mobile) {
// fixes header on tablet and below
@include screen(tablet) {
--header-height: 3.85rem;
position: fixed;
top: 0px;
width: 100%;
}
}