diff options
| author | Ray <[email protected]> | 2023-01-22 22:32:15 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-22 22:32:15 +0100 |
| commit | 8b752fd9f78f6b5af332656c9ac4eed2ef5a36ac (patch) | |
| tree | 5db79bb69fb4f3958394e0b102726fda9c85aea4 /common/main.css | |
| parent | bf2db5dc10c9b8d10ab555c3834a9e96d2873d3e (diff) | |
| parent | f89d3a91fb184e516291cc24f0b13ab3b1171e6f (diff) | |
| download | raylib.com-8b752fd9f78f6b5af332656c9ac4eed2ef5a36ac.tar.gz raylib.com-8b752fd9f78f6b5af332656c9ac4eed2ef5a36ac.zip | |
Merge pull request #48 from colleen05/master
Fixed anchor scrolling past nav bar, updated platform icons, fixed nav bar on license page.
Diffstat (limited to 'common/main.css')
| -rw-r--r-- | common/main.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/common/main.css b/common/main.css index 57d929b..fd6b131 100644 --- a/common/main.css +++ b/common/main.css @@ -79,14 +79,21 @@ h2 { line-height: 24px; } +h2::before { + content: ''; + display: block; + width: 100%; + height: 144px; + margin: -144px 0px 0px; +} + .page { width: min(var(--content-width), 100vw); - min-height: 100vh; + min-height: fit-content; margin: 0 auto; padding-top: 128px; background-color: #f5f5f5; - /* border: 2px solid #c8c8c8; */ display: flex; flex-direction: column; |
