slight mobile changes
This commit is contained in:
parent
b92aae251b
commit
25a3718d91
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="neko">
|
<div id="neko" :class="[side ? 'expanded' : '']">
|
||||||
<template v-if="!$client.supported">
|
<template v-if="!$client.supported">
|
||||||
<neko-unsupported />
|
<neko-unsupported />
|
||||||
</template>
|
</template>
|
||||||
@ -41,10 +41,13 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
max-width: 100vw;
|
||||||
|
max-height: 100vh;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
.neko-main {
|
.neko-main {
|
||||||
|
min-width: 360px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -104,6 +107,29 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
#neko {
|
||||||
|
&.expanded {
|
||||||
|
.neko-main {
|
||||||
|
transform: translateX(-$side-width);
|
||||||
|
}
|
||||||
|
.neko-menu {
|
||||||
|
transform: translateX(-$side-width);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
#neko {
|
||||||
|
.neko-main {
|
||||||
|
.room-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li v-if="!isTouch">
|
||||||
<i
|
<i
|
||||||
:class="[
|
:class="[
|
||||||
hosted && !hosting ? 'disabled' : '',
|
hosted && !hosting ? 'disabled' : '',
|
||||||
@ -114,6 +114,13 @@
|
|||||||
|
|
||||||
@Component({ name: 'neko-controls' })
|
@Component({ name: 'neko-controls' })
|
||||||
export default class extends Vue {
|
export default class extends Vue {
|
||||||
|
get isTouch() {
|
||||||
|
return (
|
||||||
|
(typeof navigator.maxTouchPoints !== 'undefined' ? navigator.maxTouchPoints < 0 : false) ||
|
||||||
|
'ontouchstart' in document.documentElement
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
get hosted() {
|
get hosted() {
|
||||||
return this.$accessor.remote.hosted
|
return this.$accessor.remote.hosted
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user