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
+1 -1
View File
@@ -39,7 +39,7 @@
.layout-wrapper.layout-nav-type-horizontal { .layout-wrapper.layout-nav-type-horizontal {
&.layout-content-height-fixed { &.layout-content-height-fixed {
> .layout-page-content { > .layout-page-content {
display: flex; // display: flex;
} }
} }
} }
@@ -183,7 +183,7 @@ export default defineComponent({
} }
.layout-page-content { .layout-page-content {
display: flex; // display: flex;
overflow: hidden; overflow: hidden;
.page-content-container { .page-content-container {
+4 -3
View File
@@ -7,6 +7,7 @@
html { html {
min-height: calc(100% + env(safe-area-inset-top)); min-height: calc(100% + env(safe-area-inset-top));
background: rgb(var(--v-theme-background)); background: rgb(var(--v-theme-background));
overflow-y: overlay;
} }
body { body {
@@ -36,13 +37,13 @@ body,
flex-grow: 1; flex-grow: 1;
overflow: hidden; overflow: hidden;
// TODO: Use grid gutter variable here // TODO: Use grid gutter variable here
padding-block: 0.5rem; padding-block: 1.5rem;
padding-top: calc(env(safe-area-inset-top) + 70px); padding-top: calc(env(safe-area-inset-top) + 70px);
display: flex; // display: flex;
.page-content-container { .page-content-container {
flex: 1; // flex: 1;
display: flex; display: flex;
& > div:first-child { & > div:first-child {
+1 -3
View File
@@ -3,7 +3,5 @@ import DownloadingListView from '@/views/reorganize/DownloadingListView.vue'
</script> </script>
<template> <template>
<div> <DownloadingListView />
<DownloadingListView />
</div>
</template> </template>
+1 -3
View File
@@ -3,7 +3,5 @@ import TransferHistoryView from '@/views/reorganize/TransferHistoryView.vue'
</script> </script>
<template> <template>
<div> <TransferHistoryView />
<TransferHistoryView />
</div>
</template> </template>
+1 -3
View File
@@ -3,7 +3,5 @@ import PluginCardListView from '@/views/plugin/PluginCardListView.vue'
</script> </script>
<template> <template>
<div> <PluginCardListView />
<PluginCardListView />
</div>
</template> </template>
-5
View File
@@ -139,9 +139,4 @@ onBeforeMount(fetchData)
grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
padding-block-end: 1rem; padding-block-end: 1rem;
} }
dialog-bottom-transition-enter-active,
.dialog-bottom-transition-leave-active {
transition: transform 0.2s ease-in-out;
}
</style> </style>