48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<!-- BEGIN: Vendor CSS-->
|
|
@if ($configData['direction'] === 'rtl' && isset($configData['direction']))
|
|
<link rel="stylesheet" href="{{ asset(mix('vendors/css/vendors-rtl.min.css')) }}" />
|
|
@else
|
|
<link rel="stylesheet" href="{{ asset(mix('vendors/css/vendors.min.css')) }}" />
|
|
@endif
|
|
|
|
@yield('vendor-style')
|
|
<!-- END: Vendor CSS-->
|
|
|
|
<!-- BEGIN: Theme CSS-->
|
|
<link rel="stylesheet" href="{{ asset(mix('css/core.css')) }}" />
|
|
<link rel="stylesheet" href="{{ asset(mix('css/base/themes/dark-layout.css')) }}" />
|
|
<link rel="stylesheet" href="{{ asset(mix('css/base/themes/bordered-layout.css')) }}" />
|
|
<link rel="stylesheet" href="{{ asset(mix('css/base/themes/semi-dark-layout.css')) }}" />
|
|
|
|
@php $configData = Helper::applClasses(); @endphp
|
|
|
|
<!-- BEGIN: Page CSS-->
|
|
@if ($configData['mainLayoutType'] === 'horizontal')
|
|
<link rel="stylesheet" href="{{ asset(mix('css/base/core/menu/menu-types/horizontal-menu.css')) }}" />
|
|
@else
|
|
<link rel="stylesheet" href="{{ asset(mix('css/base/core/menu/menu-types/vertical-menu.css')) }}" />
|
|
@endif
|
|
|
|
{{-- Page Styles --}}
|
|
@yield('page-style')
|
|
|
|
<!-- laravel style -->
|
|
<link rel="stylesheet" href="{{ asset(mix('css/overrides.css')) }}" />
|
|
<style>
|
|
.table-responsive{
|
|
overflow:unset !important;
|
|
}
|
|
</style>
|
|
<!-- BEGIN: Custom CSS-->
|
|
|
|
@if ($configData['direction'] === 'rtl' && isset($configData['direction']))
|
|
<link rel="stylesheet" href="{{ asset(mix('css-rtl/custom-rtl.css')) }}" />
|
|
<link rel="stylesheet" href="{{ asset(mix('css-rtl/style-rtl.css')) }}" />
|
|
|
|
@else
|
|
{{-- user custom styles --}}
|
|
<link rel="stylesheet" href="{{ asset(mix('css/style.css')) }}" />
|
|
@endif
|
|
|
|
{{--@livewireStyles--}}
|