You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
299 B

3 years ago
3 years ago
  1. <script lang="ts">
  2. export let centered = false;
  3. </script>
  4. <div class="option-row" class:centered>
  5. <slot></slot>
  6. </div>
  7. <style>
  8. div.option-row {
  9. margin-left: -0.5ch;
  10. margin-right: -0.5ch;
  11. }
  12. div.option-row.centered {
  13. text-align: center;
  14. padding-bottom: 0.5em;
  15. }
  16. </style>