Fix mobile upload page - full page not modal
- Add main_class yield to app.blade.php for proper CSS targeting - Add upload-page-only upload-page-responsive classes to create view - Now mobile upload (/videos/create) shows as full-width page, not modal
This commit is contained in:
parent
79bcd95d36
commit
98f55af8d7
@ -430,7 +430,7 @@
|
|||||||
@include('layouts.partials.sidebar')
|
@include('layouts.partials.sidebar')
|
||||||
|
|
||||||
<!-- Main Content -->
|
<!-- Main Content -->
|
||||||
<main class="yt-main" id="main">
|
<main class="yt-main @yield('main_class')" id="main">
|
||||||
@yield('content')
|
@yield('content')
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('body_class', 'upload-page-only')
|
@section('main_class', 'upload-page-only upload-page-responsive')
|
||||||
|
|
||||||
@section('title', 'Upload Video | ' . config('app.name'))
|
@section('title', 'Upload Video | ' . config('app.name'))
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user