Remove flex-fix as it's no longer required (ie11 is fully unsupported now)

This commit is contained in:
Kevin MacMartin 2024-03-11 17:16:33 -04:00
parent 312d2fdea7
commit d4b58b3865
5 changed files with 19 additions and 32 deletions

View file

@ -1,5 +0,0 @@
.flex-fix {
display: flex;
width: 100%;
flex-direction: column;
}

View file

@ -38,7 +38,6 @@
</head>
<body class="{{ $device_mobile ? 'mobile-browser' : 'desktop-browser' }}">
<div class="flex-fix">
<div class="site-content">
@yield('page-top')
@ -48,7 +47,6 @@
@yield('page-bottom')
</div>
</div>
@if(Config::get('app.debug') && Config::get('app.env') === 'local')
<script id="__bs_script__">//<![CDATA[

View file

@ -5,11 +5,9 @@
@endsection
@section('page-content')
<div class="flex-fix">
<div class="error-page">
<div class="error-page-content">
{{ $title }}
</div>
</div>
</div>
@endsection

View file

@ -22,7 +22,6 @@
<div id="vue-container">
<nav-component></nav-component>
<div class="flex-fix">
<div class="page-container">
<div id="router-view" class="main-content">
<router-view></router-view>
@ -31,7 +30,6 @@
<footer-component></footer-component>
</div>
</div>
</div>
@endsection
@section('page-bottom')

View file

@ -9,7 +9,6 @@
@section('page-content')
@include('sections.nav')
<div class="flex-fix">
<div class="page-container">
<div class="main-content">
@yield('content')
@ -17,5 +16,4 @@
@include('sections.footer')
</div>
</div>
@endsection