|
@@ -1,9 +1,9 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div>
|
3
|
3
|
<carouselSection v-if="!wait" :resortImages="resort.images" />
|
4
|
|
- <main id="main" style="margin-top:-20px">
|
|
4
|
+ <main id="main" style="margin-top:-20px;">
|
5
|
5
|
<section>
|
6
|
|
- <div class="container">
|
|
6
|
+ <div class="container wider">
|
7
|
7
|
<div class="row" id="resort-profile">
|
8
|
8
|
<div class="col-md-3">
|
9
|
9
|
<img src="img/listings/property1/property1-gallery.jpg" class="img-fluid" alt />
|
|
@@ -18,7 +18,7 @@
|
18
|
18
|
<gallerySection :images="resort.images" />
|
19
|
19
|
<FilterComponent :hideTop="true" />
|
20
|
20
|
</div>
|
21
|
|
- <div class="col-md-9 p-5 resort-profile">
|
|
21
|
+ <div class="col-md-9 resort-profile" style="margin-top:15px; margin-bottom:15px;">
|
22
|
22
|
<h2>{{ resort.prName }}</h2>
|
23
|
23
|
<WeekList :resortCode="resortCode" />
|
24
|
24
|
<p v-if="resort.description && resort.description !== ''">{{ resort.description }}</p>
|
|
@@ -97,4 +97,8 @@ export default {
|
97
|
97
|
};
|
98
|
98
|
</script>
|
99
|
99
|
|
100
|
|
-<style lang="scss" scoped></style>
|
|
100
|
+<style lang="scss" scoped>
|
|
101
|
+.wider {
|
|
102
|
+ width: 1600px;
|
|
103
|
+}
|
|
104
|
+</style>
|