desktop event page

This commit is contained in:
merdan 2020-02-22 00:15:52 +05:00
parent 80822c9575
commit c01d6f3d20
2 changed files with 6 additions and 11 deletions

View File

@ -1265,12 +1265,9 @@ a:hover {
background-color: #d33d33; }
.details-image {
float: left;
width: 275px;
margin: 0 30px 20px 0; }
@media only screen and (max-width: 1440px) {
.details-image {
width: 200px; } }
width: 100%;
}
.outter-p {
float: left; }

View File

@ -27,12 +27,12 @@
<div class="row">
<div class="col-3">
@if($event->images->count())
<img style="display: block; border-radius: 0" class="details-image" alt="{{$event->title}}" src="{{config('attendize.cdn_url_user_assets').'/'.$event->images->first()['image_path']}}">
<img class="details-image" alt="{{$event->title}}" src="{{config('attendize.cdn_url_user_assets').'/'.$event->images->first()['image_path']}}">
@endif
</div>
<div class="col-7 ">
<div class="row it-detail">
<div class="it-detail">
{!! Markdown::parse($event->description) !!}
<span property="location" typeof="Place">
<i class="fa fa-map-marker"></i>
@ -40,9 +40,7 @@
<meta property="address" content="{{ urldecode($event->venue->venue_name) }}">
</span>
</div>
<div class="row align-items-end">
@include('desktop.Partials.Schedule')
</div>
@include('desktop.Partials.Schedule')
</div>
</div>