mobile-ify
This commit is contained in:
parent
92eaf35f4f
commit
111be6acbf
|
@ -2,7 +2,7 @@
|
|||
import Game from './Game.svelte'
|
||||
</script>
|
||||
|
||||
<main style='width:fit-content;margin:0 auto;text-align:center'>
|
||||
<main>
|
||||
<h1>blek! Wordle</h1>
|
||||
<p>
|
||||
FOSS wordle game that runs in your browser!<br/>
|
||||
|
|
|
@ -55,6 +55,16 @@
|
|||
width: 600px;
|
||||
height: 56px;
|
||||
}
|
||||
@media (max-width: 667px) {
|
||||
.openwordle-keyboard .openwordle-keyboard-line {
|
||||
width: 96vw;
|
||||
height: 40px;
|
||||
}
|
||||
.openwordle-keyboard .openwordle-keyboard-btn {
|
||||
font-size: 10pt;
|
||||
padding: 0 4px;
|
||||
}
|
||||
}
|
||||
.kb-btn-unfit {
|
||||
background: #444454 !important;
|
||||
}
|
||||
|
|
14
src/app.css
14
src/app.css
|
@ -59,3 +59,17 @@ button:active {
|
|||
.no-anim {
|
||||
animation: none !important;
|
||||
}
|
||||
|
||||
main {
|
||||
margin: 0px auto;
|
||||
text-align: center;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
@media (max-width:667px) {
|
||||
main {
|
||||
margin: 0px !important;
|
||||
text-align: center;
|
||||
width: 100vw;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue