Skip to content

Commit

Permalink
fix(): fix stroy book of radio boxes to use labbel-hidden property in…
Browse files Browse the repository at this point in the history
…stead of depricated is-empty
  • Loading branch information
nobilo committed Nov 17, 2022
1 parent ac40b2b commit f051f47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ export const RadioBoxes = args => ({
<div @click="checkA()" :class="value === '1' ? 'has-background-light-blue':''" class="clickable is-flex px-4 py-3 is-flex-direction-column is-justify-content-center is-align-items-center has-border-primary has-radius">
<img src="https://www.baloise.ch/dam/jcr:5d0376a5-53ef-40b9-a1d9-c6d7d0c56bf7/Haushalt.svg" >
<p class="has-text-blue mb-2">Selected Label</p>
<bal-radio class="p-0" name="box-example" value="1" is-empty></bal-radio>
<bal-radio class="p-0" name="box-example" value="1" label-hidden></bal-radio>
</div>
</div>
<div class="column">
<div @click="checkB()" :class="value === '2' ? 'has-background-light-blue':''" class="clickable is-flex px-4 py-3 is-flex-direction-column is-justify-content-center is-align-items-center has-border-primary has-radius">
<img src="https://www.baloise.ch/dam/jcr:3635255e-33e7-4adf-8b3e-99954faf6036/reiseversicherung.svg" >
<p class="has-text-blue mb-2">Other Label</p>
<bal-radio class="p-0" name="box-example" value="2" is-empty></bal-radio>
<bal-radio class="p-0" name="box-example" value="2" label-hidden></bal-radio>
</div>
</div>
</div>
Expand Down

0 comments on commit f051f47

Please sign in to comment.