mobile style improvements for show pages

This commit is contained in:
Cihan Şentürk 2022-11-07 16:03:38 +03:00 committed by GitHub
parent b6295dfaf5
commit 10ee80d2e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

4
presets.js vendored
View File

@ -267,6 +267,10 @@ module.exports = {
backgroundPosition: { backgroundPosition: {
'0-full': ' 0 100%' '0-full': ' 0 100%'
},
minHeight: {
'500': '500px',
} }
}, },

3
public/css/app.css vendored
View File

@ -7281,6 +7281,9 @@ button, input, optgroup, select, textarea{
.min-h-0{ .min-h-0{
min-height: 0px; min-height: 0px;
} }
.min-h-500{
min-height: 500px;
}
.min-h-full{ .min-h-full{
min-height: 100%; min-height: 100%;
} }

View File

@ -1,3 +1,3 @@
<div class="lg:w-4/12 lg:border-r border-gray-300 pr-12 mb-4 sm:mb-0"> <div class="lg:w-4/12 lg:border-r border-gray-300 lg:pr-12 mb-4 sm:mb-0">
{!! $slot !!} {!! $slot !!}
</div> </div>