Skip to content

Commit 0efc48d

Browse files
committed
fix(layout): restore bottom padding
1 parent ce62333 commit 0efc48d

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

layouts/default.vue

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<template>
22
<div class="min-h-[100vh] min-w-[960px]">
3-
<div class="header_main my-0 flex flex-col p-0">
3+
<div class="h-[calc(100vh-2rem)] my-0 flex flex-col p-0">
44
<BarHeader />
5-
<div class="main-content flex flex-1 justify-center pb-[0.5rem]">
5+
<div class="main-content flex flex-1 justify-center pb-[2.5rem]">
66
<div class="content-container myShadow flex">
77
<div
88
class="sticky top-0 w-[15%] min-w-[12rem] bg-leftbar-bg *:text-nowrap">
@@ -15,8 +15,3 @@
1515
<BarFooter class="fixed bottom-0 h-[2rem]" />
1616
</div>
1717
</template>
18-
<style lang="scss">
19-
.header_main {
20-
height: calc(100vh - 2rem);
21-
}
22-
</style>

0 commit comments

Comments
 (0)