Improved readability in small screens
parent
8d2a4b2293
commit
ad7274d051
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="container-fluid">
|
<body class="container-fluid" id="pageBody">
|
||||||
<div class="row" id="title">
|
<div class="row" id="title">
|
||||||
<h1>Nintendo Switch Payload Loader</h1>
|
<h1>Nintendo Switch Payload Loader</h1>
|
||||||
<h4>Fusee Launcher ported to JavaScript using WebUSB.</h4>
|
<h4>Fusee Launcher ported to JavaScript using WebUSB.</h4>
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
#pageBody {
|
||||||
|
font-size: 3vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
|
|
Loading…
Reference in New Issue