20 lines
524 B
PHP
20 lines
524 B
PHP
<!-- Dropezone CSS -->
|
|
<link rel="stylesheet" href="{{ asset('css/dropzone.css') }}">
|
|
<!-- CoreUI CSS -->
|
|
<link rel="stylesheet" href="{{ mix('css/app.css') }}" crossorigin="anonymous">
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
|
|
|
|
@yield('third_party_stylesheets')
|
|
|
|
@livewireStyles
|
|
|
|
@stack('page_css')
|
|
|
|
<style>
|
|
div.dataTables_wrapper div.dataTables_length select {
|
|
width: 65px;
|
|
display: inline-block;
|
|
}
|
|
</style>
|