Skip to content

Commit

Permalink
fix: hide globs correctly behind overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucsoft committed Jul 27, 2023
1 parent 2d87a23 commit 66ee153
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions components/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ nav.settings {
nav.home {
position: fixed;
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
}

[data-theme="light"] nav.home {
Expand Down
2 changes: 1 addition & 1 deletion data/locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"bbn-fsn": "🇩🇪 Falkenstein (Free)",
"bbn-hel": "🇫🇮 Helsinki (Free)",
"bbn-mum": "🇮🇳 Mumbai (Free)",
"bbn-sgp": "🇸🇬 Singapur (Free)"
"bbn-sgp": "🇸🇬 Singapore (Free)"
}
6 changes: 6 additions & 0 deletions pages/holding/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ body {
overflow-x: hidden;
}

.content {
overflow: hidden;
margin-bottom: -52rem;
padding-bottom: 52rem;
}

.content>* {
z-index: 2;
}
Expand Down
4 changes: 4 additions & 0 deletions pages/shared/footer.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.footer-space {
overflow: hidden;
}

.footer {
--spacing: 4rem;
position: relative;
Expand Down
4 changes: 2 additions & 2 deletions pages/shared/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import splash from "../../assets/splash.png";
import './footer.css';

export function Footer() {
return Box(
return Box(Box(
Image(splash, "Splash Image").addClass("splash-image"),
Box(
Box(
Expand Down Expand Up @@ -82,5 +82,5 @@ export function Footer() {
)
.addClass("icon-bar")
).addClass("area-bg")
).addClass("footer");
).addClass("footer")).addClass("footer-space");
}

0 comments on commit 66ee153

Please sign in to comment.