Update wrapper.blade.php

This commit is contained in:
Dane Everitt 2020-08-25 21:00:43 -07:00
parent 179885b546
commit 0e0b58ba5e
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -35,21 +35,11 @@
@import url('//fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans:500&display=swap'); @import url('//fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans:500&display=swap');
</style> </style>
@section('assets') @yield('assets')
{{-- {!! $asset->css('main.css') !!}--}}
@show
@include('layouts.scripts') @include('layouts.scripts')
</head> </head>
<body class="{{ $css['body'] ?? 'bg-neutral-50' }}"> <body class="{{ $css['body'] ?? 'bg-neutral-50' }}">
@if(\Illuminate\Support\Str::contains(config('app.version'), ['-alpha', '-beta']))
<div class="bg-red-500">
<p class="text-center text-white text-sm p-3">
You are running a pre-release version of Pterodactyl. Please report any issues
<a href="https://github.com/pterodactyl/panel/issues" class="text-red-100">via GitHub</a>.
</p>
</div>
@endif
@section('content') @section('content')
@yield('above-container') @yield('above-container')
@yield('container') @yield('container')