aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/routes/__layout.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'web/pw-server/src/routes/__layout.svelte')
-rw-r--r--web/pw-server/src/routes/__layout.svelte26
1 files changed, 26 insertions, 0 deletions
diff --git a/web/pw-server/src/routes/__layout.svelte b/web/pw-server/src/routes/__layout.svelte
new file mode 100644
index 0000000..53b6269
--- /dev/null
+++ b/web/pw-server/src/routes/__layout.svelte
@@ -0,0 +1,26 @@
+<script lang="ts">
+ import "./style.css";
+</script>
+
+<div class="outer-container">
+ <div class="top-bar" />
+ <slot />
+</div>
+
+<style lang="scss">
+ @import "../lib/variables.scss";
+
+ .outer-container {
+ width: 100vw;
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .top-bar {
+ height: 40px;
+ background-color: $bg-color;
+ border-bottom: 1px solid;
+ flex-shrink: 0;
+ }
+</style>