Fixed really small size on small screens
This commit is contained in:
parent
2ad735bf85
commit
94f8aabaa2
|
@ -6,6 +6,7 @@ Changelog
|
||||||
|
|
||||||
- Fixed broken file import due to wrong url (#73)
|
- Fixed broken file import due to wrong url (#73)
|
||||||
- More accurate mimetype detection
|
- More accurate mimetype detection
|
||||||
|
- Fixed really small size on small screens.
|
||||||
|
|
||||||
|
|
||||||
0.5.1 (2018-02-24)
|
0.5.1 (2018-02-24)
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Funkwhale</title>
|
<title>Funkwhale</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
|
|
|
@ -59,7 +59,7 @@ export default {
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
@include media("<desktop") {
|
@include media("<desktop") {
|
||||||
font-size: 200%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#app {
|
#app {
|
||||||
|
|
Loading…
Reference in New Issue