Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Nov 13, 2023
1 parent 381642e commit 7d583ed
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
Binary file removed building-plans/public/favicon.ico
Binary file not shown.
Binary file added building-plans/public/icons/icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion building-plans/src/components/GltfScene.module.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.canvas {
margin: calc(0px - var(--main-padding));
width: 100vw;
height: calc(100vh - var(--nav-primary-height));
height: 100vh;
}
11 changes: 11 additions & 0 deletions building-plans/src/root.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
:root {
--nav-primary-height: 40px;
--color-nav-primary-bg: hwb(0deg 100% 0%);
--space-8: 8px;
--color-body-fg: hwb(0deg 100% 0%);
--color-body-bg: hwb(240deg 20% 70.2%);
--main-padding: var(--space-8);
}

body {
background-color: var(--color-body-bg);
color: var(--color-body-fg);
font-family: Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
margin: 0;
}

nav {
background-color: var(--color-nav-primary-bg);
display: flex;
align-items: center;
gap: var(--space-8);
padding: 0 var(--space-8);
height: var(--nav-primary-height);
}

main {
padding: var(--main-padding);
}
4 changes: 3 additions & 1 deletion building-plans/src/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
FileRoutes,
Head,
Html,
Link,
Meta,
Routes,
Scripts,
Expand All @@ -20,9 +21,10 @@ export default function Root() {
return (
<Html lang="en">
<Head>
<Title>SolidStart - With MDX</Title>
<Title>Emeraldwalk - Building</Title>
<Meta charset="utf-8" />
<Meta name="viewport" content="width=device-width, initial-scale=1" />
<Link rel="icon" href={`${BASE_URL}icons/icon-48x48.png`} />
</Head>
<Body>
<ErrorBoundary>
Expand Down
2 changes: 1 addition & 1 deletion building-plans/src/routes/index.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Hello World!
# Emeraldwalk Building

0 comments on commit 7d583ed

Please sign in to comment.