Merge pull request #855 from Safelite/defect/CSR-949
CSR-949 | Subheader text wasn't showing in collapsed state
This commit is contained in:
commit
4aa74e7298
1 changed files with 9 additions and 2 deletions
|
|
@ -1,8 +1,11 @@
|
|||
<template>
|
||||
<baseInputButton v-bind="$props" @buttonClicked="handleAnswerChange" v-model="selectedValue">
|
||||
<div class="package-label" for="testradio">
|
||||
<div
|
||||
class="package-label"
|
||||
:class="[this.buttonLabelSubCopy ? 'has-subheader' : '']"
|
||||
for="testradio">
|
||||
<div class="package-specs">
|
||||
<p :class="[this.buttonLabelSubCopy ? 'mb-2' : 'm-0']">
|
||||
<p class="m-0">
|
||||
<span v-html="this.buttonLabel"></span>
|
||||
<span class="pricing-info" v-html="this.buttonAuxillaryCopy"></span>
|
||||
</p>
|
||||
|
|
@ -113,6 +116,10 @@ export default {
|
|||
overflow: hidden;
|
||||
min-height: 58px;
|
||||
|
||||
&.has-subheader {
|
||||
min-height: 86px;
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
position: relative;
|
||||
|
|
|
|||
Loading…
Reference in a new issue