mirror of https://github.com/halo-dev/halo
fix: issue of content overflow in the console page (#4937)
Signed-off-by: Ryan Wang <i@ryanc.cc>pull/4955/head
parent
b2b096c544
commit
6e70d2e047
|
@ -200,7 +200,7 @@ onMounted(() => {
|
|||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="content w-full pb-12 mb-safe md:pb-0">
|
||||
<main class="content w-full pb-12 mb-safe md:w-[calc(100%-16rem)] md:pb-0">
|
||||
<slot v-if="$slots.default" />
|
||||
<RouterView v-else />
|
||||
</main>
|
||||
|
|
|
@ -166,7 +166,7 @@ onMounted(() => {
|
|||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="content w-full pb-12 mb-safe md:pb-0">
|
||||
<main class="content w-full pb-12 mb-safe md:w-[calc(100%-16rem)] md:pb-0">
|
||||
<slot v-if="$slots.default" />
|
||||
<RouterView v-else />
|
||||
</main>
|
||||
|
|
Loading…
Reference in New Issue