Merge pull request #708 from Safelite/feature/SSR-1257
SSR-1257 styling defects
This commit is contained in:
commit
e8dc24af22
2 changed files with 10 additions and 2 deletions
|
|
@ -275,6 +275,10 @@ input[type='date']::-webkit-calendar-picker-indicator {
|
||||||
min-width: 48px;
|
min-width: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input::-webkit-date-and-time-value {
|
||||||
|
text-align: left !important;
|
||||||
|
}
|
||||||
|
|
||||||
.textbox-question {
|
.textbox-question {
|
||||||
label {
|
label {
|
||||||
color: $black;
|
color: $black;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="subheader-primary d-flex align-items-center justify-content-center overflow-hidden mb-2">
|
class="subheader-primary d-flex align-items-center justify-content-center overflow-hidden">
|
||||||
<h5
|
<h5
|
||||||
class="text-center fw-normal mb-0 subheader-primary"
|
class="text-center fw-normal mb-0 subheader-primary"
|
||||||
:class="headerColor">
|
:class="headerColor">
|
||||||
|
|
@ -15,7 +15,8 @@
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="subheader-secondary d-flex align-items-center overflow-hidden"
|
v-if="hasSubText"
|
||||||
|
class="subheader-secondary d-flex align-items-center overflow-hidden mt-2"
|
||||||
:class="[justifySubheader, subHeaderClasses]">
|
:class="[justifySubheader, subHeaderClasses]">
|
||||||
<p
|
<p
|
||||||
class="dark-header"
|
class="dark-header"
|
||||||
|
|
@ -86,6 +87,9 @@ export default {
|
||||||
|
|
||||||
return subText ?? '';
|
return subText ?? '';
|
||||||
},
|
},
|
||||||
|
hasSubText() {
|
||||||
|
return this.subText.length > 0;
|
||||||
|
},
|
||||||
backButtonAccessibleText() {
|
backButtonAccessibleText() {
|
||||||
return this.getCmsContent(
|
return this.getCmsContent(
|
||||||
this.cmsWidgetName,
|
this.cmsWidgetName,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue