fix admin-css: Move import location to fix admin css from being overwritten by Bootstrap 3

This commit is contained in:
prplwtf 2024-02-24 14:54:45 +01:00
parent c2daece357
commit 1314708e95

View file

@ -11,7 +11,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
@yield("blueprint.import")
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{ config('app.name', 'Pterodactyl') }} - @yield('title')</title> <title>{{ config('app.name', 'Pterodactyl') }} - @yield('title')</title>
@ -45,6 +44,8 @@
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]--> <![endif]-->
@show @show
@yield("blueprint.import")
</head> </head>
<body class="hold-transition skin-blue fixed sidebar-mini"> <body class="hold-transition skin-blue fixed sidebar-mini">
@yield('blueprint.cache') @yield('blueprint.cache')