Merge pull request #2734 from brkcvn/master

Mobile improvements
This commit is contained in:
Burak Civan 2022-11-09 13:17:57 +03:00 committed by GitHub
commit 1e1bc29b16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 1 deletions

12
public/css/app.css vendored
View File

@ -54047,6 +54047,18 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
}
/* template table border radius control */
/* responsive for role mobile */
.scroll-div-mobile {
width: 700px;
}
@media only screen and (min-width: 991px) {
.scroll-div-mobile {
width: 100%;
}
}
/* responsive for role mobile */
[dir="ltr"] .ltr\:-right-57 {
right: -14.5rem;
}

View File

@ -560,6 +560,18 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
}
/* template table border radius control */
/* responsive for role mobile */
.scroll-div-mobile {
width: 700px;
}
@media only screen and (min-width: 991px) {
.scroll-div-mobile {
width: 100%;
}
}
/* responsive for role mobile */
[dir="ltr"] .ltr\:-right-57 {
right: -14.5rem;
}

View File

@ -1,3 +1,3 @@
<div class="flex flex-col lg:flex-row sm:mt-12">
<div {{ ((! $attributes->has('override')) || ($attributes->has('override') && ! in_array('class', explode(',', $attributes->get('override'))))) ? $attributes->merge(['class' => 'flex flex-col lg:flex-row sm:mt-12']) : $attributes }}>
{!! $slot !!}
</div>