+
{/if}
-
+
+
@@ -49,7 +50,8 @@
height: 100vh;
overflow-y: scroll;
}
- @media screen and (min-width: 1215px) {
+
+ @media screen and (min-width: 1440px) {
figure {
position: fixed;
z-index: 0;
@@ -59,10 +61,13 @@
bottom: 0px;
background-image: url('/images/gui-background-grid.svg');
background-size: cover;
- background-repeat: repeat;
+ background-repeat: repeat-y;
+ }
+ .content {
+ padding: 0vw 3.6vw !important;
}
}
- @media screen and (max-width: 1215px) {
+ @media screen and (max-width: 1440px) {
figure {
position: fixed;
z-index: 0;
@@ -74,14 +79,16 @@
background-size: contain;
background-repeat: repeat;
}
+ .content {
+ padding: 0vw 3.33vw;
+ }
}
header {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
- height: 50px;
- border-bottom: #ccc 1px solid;
+ height: 40px;
}
slot {
diff --git a/packages/ui/src/Gallery/Gallery.svelte b/packages/ui/src/Gallery/Gallery.svelte
index 0b749d2..1c1d5ef 100644
--- a/packages/ui/src/Gallery/Gallery.svelte
+++ b/packages/ui/src/Gallery/Gallery.svelte
@@ -65,7 +65,7 @@
focus = i;
resetLoop();
}}
- class={`bg-purple h-4 w-4 rounded-lg border-2 border-white transition-colors ${
+ class={`bg-purple h-3 w-3 rounded-lg border border-white transition-colors ${
i === focus ? 'bg-purple-900' : ''
}`}
/>
diff --git a/packages/ui/src/Gallery/GalleryItem.svelte b/packages/ui/src/Gallery/GalleryItem.svelte
index 28e119f..64c35fc 100644
--- a/packages/ui/src/Gallery/GalleryItem.svelte
+++ b/packages/ui/src/Gallery/GalleryItem.svelte
@@ -31,8 +31,7 @@