From 94f8aabaa27dc5c3a86664a8850fbf38649f4a74 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Mon, 26 Feb 2018 19:01:14 +0100
Subject: [PATCH] Fixed really small size on small screens

---
 CHANGELOG         | 1 +
 front/index.html  | 1 +
 front/src/App.vue | 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG
index dc8f4df03a..529d6fb7c4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -6,6 +6,7 @@ Changelog
 
 - Fixed broken file import due to wrong url (#73)
 - More accurate mimetype detection
+- Fixed really small size on small screens.
 
 
 0.5.1 (2018-02-24)
diff --git a/front/index.html b/front/index.html
index 55e32a7ee2..d3cf010692 100644
--- a/front/index.html
+++ b/front/index.html
@@ -3,6 +3,7 @@
   <head>
     <meta charset="utf-8">
     <title>Funkwhale</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1">
   </head>
   <body>
     <div id="app"></div>
diff --git a/front/src/App.vue b/front/src/App.vue
index 8453aa3394..3e39d7262c 100644
--- a/front/src/App.vue
+++ b/front/src/App.vue
@@ -59,7 +59,7 @@ export default {
 
 html, body {
   @include media("<desktop") {
-    font-size: 200%;
+    font-size: 90%;
   }
 }
 #app {
-- 
GitLab