Browse Source

Alignement fix on property page

master
George Williams 6 years ago
parent
commit
ac738c0bd8
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      src/components/property/propertyPage.vue

+ 1
- 0
src/components/property/propertyPage.vue View File

100
                       <li class="d-flex justify-content-between">
100
                       <li class="d-flex justify-content-between">
101
                         <strong>Address:</strong>
101
                         <strong>Address:</strong>
102
                         <span
102
                         <span
103
+                          style="text-align:right"
103
                           v-if="property"
104
                           v-if="property"
104
                           v-html="formatAddress(property.addressLine1) + formatAddress(property.addressLine2) + formatAddress(property.addressLine3) + formatAddress(property.suburb ? property.suburb.description : '') + formatAddress(property.city ? property.city.description : '') + formatAddress(property.province ? property.province.description : '') "
105
                           v-html="formatAddress(property.addressLine1) + formatAddress(property.addressLine2) + formatAddress(property.addressLine3) + formatAddress(property.suburb ? property.suburb.description : '') + formatAddress(property.city ? property.city.description : '') + formatAddress(property.province ? property.province.description : '') "
105
                         ></span>
106
                         ></span>

Loading…
Cancel
Save