This commit is contained in:
jxxghp
2023-07-25 21:29:38 +08:00
parent 0873dd1304
commit 2c163f691b
7 changed files with 9 additions and 19 deletions

View File

@@ -39,7 +39,7 @@
.layout-wrapper.layout-nav-type-horizontal {
&.layout-content-height-fixed {
> .layout-page-content {
display: flex;
// display: flex;
}
}
}

View File

@@ -183,7 +183,7 @@ export default defineComponent({
}
.layout-page-content {
display: flex;
// display: flex;
overflow: hidden;
.page-content-container {

View File

@@ -7,6 +7,7 @@
html {
min-height: calc(100% + env(safe-area-inset-top));
background: rgb(var(--v-theme-background));
overflow-y: overlay;
}
body {
@@ -36,13 +37,13 @@ body,
flex-grow: 1;
overflow: hidden;
// TODO: Use grid gutter variable here
padding-block: 0.5rem;
padding-block: 1.5rem;
padding-top: calc(env(safe-area-inset-top) + 70px);
display: flex;
// display: flex;
.page-content-container {
flex: 1;
// flex: 1;
display: flex;
& > div:first-child {

View File

@@ -3,7 +3,5 @@ import DownloadingListView from '@/views/reorganize/DownloadingListView.vue'
</script>
<template>
<div>
<DownloadingListView />
</div>
<DownloadingListView />
</template>

View File

@@ -3,7 +3,5 @@ import TransferHistoryView from '@/views/reorganize/TransferHistoryView.vue'
</script>
<template>
<div>
<TransferHistoryView />
</div>
<TransferHistoryView />
</template>

View File

@@ -3,7 +3,5 @@ import PluginCardListView from '@/views/plugin/PluginCardListView.vue'
</script>
<template>
<div>
<PluginCardListView />
</div>
<PluginCardListView />
</template>

View File

@@ -139,9 +139,4 @@ onBeforeMount(fetchData)
grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
padding-block-end: 1rem;
}
dialog-bottom-transition-enter-active,
.dialog-bottom-transition-leave-active {
transition: transform 0.2s ease-in-out;
}
</style>