mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-06-06 01:57:34 +08:00
fix: test commit
This commit is contained in:
5
frontend_nuxt/.prettierignore
Normal file
5
frontend_nuxt/.prettierignore
Normal file
@@ -0,0 +1,5 @@
|
||||
node_modules
|
||||
dist
|
||||
.build
|
||||
.output
|
||||
coverage
|
||||
7
frontend_nuxt/.prettierrc
Normal file
7
frontend_nuxt/.prettierrc
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"semi": false,
|
||||
"trailingComma": "all",
|
||||
"printWidth": 100,
|
||||
"tabWidth": 2
|
||||
}
|
||||
@@ -19,6 +19,7 @@
|
||||
<script>
|
||||
import HeaderComponent from '~/components/HeaderComponent.vue'
|
||||
import MenuComponent from '~/components/MenuComponent.vue'
|
||||
|
||||
import GlobalPopups from '~/components/GlobalPopups.vue'
|
||||
|
||||
export default {
|
||||
@@ -30,14 +31,14 @@ export default {
|
||||
const hideMenu = computed(() => {
|
||||
return [
|
||||
'/login',
|
||||
'/signup',
|
||||
'/signup',
|
||||
'/404',
|
||||
'/signup-reason',
|
||||
'/github-callback',
|
||||
'/twitter-callback',
|
||||
'/discord-callback',
|
||||
'/forgot-password',
|
||||
'/google-callback'
|
||||
'/google-callback',
|
||||
].includes(useRoute().path)
|
||||
})
|
||||
|
||||
@@ -61,7 +62,8 @@ export default {
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.menu-container {}
|
||||
.menu-container {
|
||||
}
|
||||
|
||||
.content {
|
||||
/* height: calc(100vh - var(--header-height)); */
|
||||
@@ -70,7 +72,7 @@ export default {
|
||||
max-width: 100%;
|
||||
transition: max-width 0.3s ease;
|
||||
background-color: var(--background-color);
|
||||
min-height: calc(100vh - var(--header-height));
|
||||
min-height: calc(100vh - var(--header-height));
|
||||
}
|
||||
|
||||
.content.menu-open {
|
||||
@@ -85,7 +87,6 @@ export default {
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
||||
.content,
|
||||
.content.menu-open {
|
||||
max-width: 100% !important;
|
||||
|
||||
Reference in New Issue
Block a user