Update confirmation.vue
ADDED Padding font-size and color
This commit is contained in:
parent
9f5612c2f7
commit
fc4d5e6cd2
1 changed files with 22 additions and 19 deletions
|
|
@ -34,9 +34,9 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-html="this.getAppointmentWordingText()"></div>
|
<div class="appoinmenttext" v-html="this.getAppointmentWordingText()"></div>
|
||||||
</div>
|
</div>
|
||||||
<div v-html="this.getConfirmationEmailText()"></div>
|
<div class="emailtext" v-html="this.getConfirmationEmailText()"></div>
|
||||||
<navbar
|
<navbar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
|
|
@ -255,27 +255,14 @@ export default {
|
||||||
.scheduleText P {
|
.scheduleText P {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 20px;
|
font-size: 1.25rem;
|
||||||
color: $black;
|
color: $black;
|
||||||
|
|
||||||
+ p {
|
+ p {
|
||||||
font-size: 16px;
|
font-size: 1rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.confirmationEmailText P {
|
|
||||||
margin: 0;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 14px;
|
|
||||||
color: $black;
|
|
||||||
|
|
||||||
+ p {
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar-section[data-v-8004c52c] {
|
.calendar-section[data-v-8004c52c] {
|
||||||
display: table;
|
display: table;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
@ -313,9 +300,25 @@ export default {
|
||||||
p {
|
p {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 20px;
|
font-size: 1.25rem;
|
||||||
padding: 5px;
|
padding: 0.3rem;
|
||||||
color: $black;
|
color: $black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.appoinmenttext strong{color:$black;}
|
||||||
|
|
||||||
|
.emailtext{
|
||||||
|
padding:1.5rem 0 0;
|
||||||
|
|
||||||
|
p{
|
||||||
|
font-size:0.875rem;
|
||||||
|
margin:0;
|
||||||
|
|
||||||
|
strong{
|
||||||
|
color:$black;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue