This commit is contained in:
Burak Civan
2022-11-09 12:16:05 +03:00
9 changed files with 352 additions and 63 deletions

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

@ -3,6 +3,7 @@
<script type="text/javascript">
var company_currency_code = '{{ default_currency() }}';
var sentry_dsn = "https://9ffc5a5f104d4087911f60714e8bdbe9@o4503982427078656.ingest.sentry.io/4503999793594368";
</script>
@stack('scripts_start')

View File

@ -3,6 +3,7 @@
<script type="text/javascript">
var company_currency_code = '{{ default_currency() }}';
var sentry_dsn = "https://9ffc5a5f104d4087911f60714e8bdbe9@o4503982427078656.ingest.sentry.io/4503999793594368";
</script>
@stack('scripts_start')

View File

@ -3,6 +3,7 @@
<script type="text/javascript">
var company_currency_code = '{{ default_currency() }}';
var sentry_dsn = "https://9ffc5a5f104d4087911f60714e8bdbe9@o4503982427078656.ingest.sentry.io/4503999793594368";
</script>
@stack('scripts_start')

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>