mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-07 17:18:13 -07:00
website: redesign part 3
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export function createExplorePage() {
|
||||
const main = document.createElement("main");
|
||||
main.className = "explore";
|
||||
const title = document.createElement("h1");
|
||||
title.append("Explore");
|
||||
main.append(title);
|
||||
return main;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
main.explore {
|
||||
min-height: 100dvh;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
color: white;
|
||||
font-size: 4rem;
|
||||
}
|
||||
Reference in New Issue
Block a user