diff --git a/frontend/src/App.vue b/frontend/src/App.vue index ec1483a..24d17c5 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -25,9 +25,9 @@ import HeaderNav from "@/components/HeaderNav.vue" :root * { color: #e0e0e0; } - + .background { - height: 250%; + height: 100%; width: 100%; position:absolute; top:0; @@ -38,9 +38,14 @@ import HeaderNav from "@/components/HeaderNav.vue" #000000 50%, map.get(map.get(base.$themes, "dark"), "background") 100%, ) no-repeat; + resize: both; font-family: "YaHei Consolas Hybrid", Consolas, Inconsolata, sans-serif; } + body { + background: black + } + .nav-li { padding: 10px; } diff --git a/frontend/src/components/Projects.vue b/frontend/src/components/Projects.vue index d501347..2d6134f 100644 --- a/frontend/src/components/Projects.vue +++ b/frontend/src/components/Projects.vue @@ -7,7 +7,7 @@
- makeyourownapp-jam + makeyourownapp-jam
Make your own app! game jam @@ -41,7 +41,7 @@ .card-container { display: grid; - grid-template-columns: repeat(auto-fill, minmax(24rem, auto)); + grid-template-columns: repeat(auto-fill, minmax(10rem, auto)); gap: 2rem; } @@ -61,4 +61,8 @@ .rounded { border-radius: 15px; } + + .img { + width: 200px; + } \ No newline at end of file diff --git a/frontend/src/views/AboutView.vue b/frontend/src/views/AboutView.vue index fba5a49..f75c142 100644 --- a/frontend/src/views/AboutView.vue +++ b/frontend/src/views/AboutView.vue @@ -3,11 +3,29 @@ \ No newline at end of file diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue index 4c9b5e2..3929f47 100644 --- a/frontend/src/views/HomeView.vue +++ b/frontend/src/views/HomeView.vue @@ -15,7 +15,7 @@ import { Icon } from '@iconify/vue'

-
+      
 ┌─────────────────────────────────────────────┐
 │                  _  _              __       │
 │  ___  _ __ ___  (_)| | __ ___     / _| _ __ │
@@ -53,4 +53,10 @@ import { Icon } from '@iconify/vue'
     }
   }
 
-
+  @media screen and (min-width: 1600px) {
+    body {
+      font-size: 30px;
+    }
+  }
+
+
\ No newline at end of file