css 如何在Laravel、Vue和Inertia中删除认证布局和其他组件之间的空间

nlejzf6q  于 2023-10-21  发布在  其他
关注(0)|答案(1)|浏览(99)

我在laravel和vue中使用惯性编程,所以当我在系统中进行身份验证时,身份验证布局会在页面标题中留出一个空格,我该如何解决这个问题
Here in this image I show the space that I want to eliminate is marked with a red pencil
Layout Autentication codeDashboard code

kr98yfug

kr98yfug1#

在Authenticate布局文件中,几乎一直到最后,在这部分代码中,

<header class="bg-white dark:bg-gray-800 shadow" v-if="$slots.header">
    <div class="pt-4">
        <slot name="header" />
    </div>
</header>

消除填充

相关问题