Compare commits

..

No commits in common. '685afb3bcce0952f242b399edcd80095ea280141' and '6934eb95afe19a024c50ddf521c0dfdbbbe89949' have entirely different histories.

@ -846,7 +846,7 @@ class ClientController extends Controller
} else {
$rate = new Rate();
}
if ($rt > 0 && $rt <= 5) {
if ($rt > 0 && $rt < 5) {
$rate->rater_type = Customer::class;
$rate->rater_id = auth('customer')->id();
$rate->rateable_type = $request->rateable_type;

@ -29,7 +29,7 @@
<div class="col-lg-6">
<a class="pedi-product" href="{{$product->webUrl()}}">
<img src="{{$product->thumbUrl()}}" alt="{{$product->name}}" class="float-start">
<span class="price">
<span>
{{$product->getPrice()}}
</span>
<h4>

@ -88,7 +88,6 @@
top: 1rem;
position: absolute;
font-size: 20px;
color: var(--xshop-secondary);
}
h4 {
@ -125,22 +124,4 @@
position: relative;
}
}
}
/*-600px width*/
@media (max-width: 600px) {
.PedramProducts {
.price {
position: absolute;
bottom: 1rem;
inset-inline-end: 1rem;
top: auto !important;
background: var(--xshop-background);
padding: 4px 10px 0 ;
border: 1px solid var(--xshop-secondary);
border-radius: var(--xshop-border-radius);
}
}
}

Loading…
Cancel
Save