diff --git a/CHANGELOG b/CHANGELOG index dc8f4df03ae49c3a72e71ba0ef4c7140aed2741e..529d6fb7c485ba3fb4ed00fb01024b7443fd51b9 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 55e32a7ee20612128e338e3b58096b4f13e90408..d3cf01069245fbb44833cd1106f7420aa1430537 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 8453aa33941813d6c451fa2184d05e7f9c669486..3e39d7262ccec891711e7d6a16c8454a53559aaa 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 {