coding style..

This commit is contained in:
Cüneyt Şentürk 2024-11-29 15:01:48 +00:00
parent 959dbd2ca5
commit 434c5af2b8
4 changed files with 38 additions and 3 deletions

View File

@ -43,7 +43,7 @@ class Money
$money_format = $request->get($parameter);
if (!preg_match("/^(?=.*?[0-9])[0-9.,]+$/", $money_format)) {
if (! preg_match("/^(?=.*?[0-9])[0-9.,]+$/", $money_format)) {
continue;
}

35
public/css/app.css vendored
View File

@ -47040,10 +47040,22 @@ button, input, optgroup, select, textarea{
font-size: 1.125rem;
line-height: 1.75rem;
}
.text-lg\/6{
font-size: 1.125rem;
line-height: 1.5rem;
}
.text-lg\/8{
font-size: 1.125rem;
line-height: 2rem;
}
.text-sm{
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-sm\/6{
font-size: 0.875rem;
line-height: 1.5rem;
}
.text-xl{
font-size: 1.25rem;
line-height: 1.75rem;
@ -47052,6 +47064,10 @@ button, input, optgroup, select, textarea{
font-size: 0.75rem;
line-height: 1rem;
}
.text-xs\/5{
font-size: 0.75rem;
line-height: 1.25rem;
}
.font-black{
font-weight: 900;
}
@ -68577,6 +68593,11 @@ body{
color: rgb(107 114 128 / var(--tw-text-opacity));
}
.group:hover .group-hover\:text-gray-600{
--tw-text-opacity: 1;
color: rgb(75 85 99 / var(--tw-text-opacity));
}
.group:hover .group-hover\:text-purple-700{
--tw-text-opacity: 1;
color: rgb(64 66 104 / var(--tw-text-opacity));
@ -68896,6 +68917,11 @@ body{
line-height: 1.5rem;
}
.sm\:text-5xl{
font-size: 2.25rem;
line-height: 2.5rem;
}
.sm\:text-6xl{
font-size: 2.5rem;
line-height: 2.75rem;
@ -68984,6 +69010,11 @@ body{
margin-right: -3rem;
}
.lg\:mx-0{
margin-left: 0px;
margin-right: 0px;
}
.lg\:my-0{
margin-top: 0px;
margin-bottom: 0px;
@ -69219,6 +69250,10 @@ body{
max-width: 32rem;
}
.lg\:max-w-none{
max-width: none;
}
.lg\:grid-cols-2{
grid-template-columns: repeat(2, minmax(0, 1fr));
}

View File

@ -1,7 +1,7 @@
@stack('slider_start')
<div class="hidden lg:block md:w-6/12 h-full flex-col h-fit">
<div class="swiper bg-cover bg-bottom bg-no-repeat h-screen py-24">
<div class="swiper-container h-full">
<div class="swiper-container h-full -mt-12">
<div class="swiper-wrapper">
<div class="swiper-slide flex justify-center flex-col items-center">
<div style="width:450px; height:450px;">

View File

@ -23,7 +23,7 @@
'key' => 'email',
'value' => 'email'
]"
:selected="[$transaction->contact->email]"
:selected="$transaction->contact?->email ? [$transaction->contact->email] : []"
without-remote
without-add-new
multiple