mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
16 lines
298 B
PHP
16 lines
298 B
PHP
@aware(['component'])
|
|
|
|
@php
|
|
$theme = $component->getTheme();
|
|
@endphp
|
|
|
|
@if ($theme === 'tailwind')
|
|
<div class="flex-col">
|
|
{{ $slot }}
|
|
</div>
|
|
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
|
<div class="d-flex flex-column">
|
|
{{ $slot }}
|
|
</div>
|
|
@endif
|