resources/views/layouts/app.blade.php: add "h-full" class to body (so that it's possible to have a full height sidebar).
This commit is contained in:
parent
9992f4a1ed
commit
014e1bc091
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@
|
||||||
@livewireStyles
|
@livewireStyles
|
||||||
<script defer src="https://unpkg.com/alpinejs@3.2.4/dist/cdn.min.js"></script>
|
<script defer src="https://unpkg.com/alpinejs@3.2.4/dist/cdn.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="h-full">
|
||||||
|
|
||||||
{{ $slot }}
|
{{ $slot }}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue