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.
 
 
 
 

38 line
742 B

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. .checkbox-group {
  4. input[type='checkbox'] ~ label {
  5. margin-bottom: 0.4em;
  6. }
  7. .checkbox-wrapper {
  8. padding-left: 29px;
  9. display: none;
  10. }
  11. .acc {
  12. width: calc(100% - 30px);
  13. }
  14. .acc a {
  15. position: relative;
  16. display: block;
  17. @include focus-visible;
  18. padding: 0 0.2em;
  19. margin: 0 -0.2em;
  20. border-radius: var(--border-radius-xs);
  21. text-decoration: none;
  22. &::before {
  23. @include icon-checkbox-liste;
  24. position: absolute;
  25. font-family: 'Icons', sans-serif;
  26. font-size: var(--icon-size);
  27. line-height: 1;
  28. right: -3px;
  29. top: 50%;
  30. margin-top: calc(var(--icon-size) / -2);
  31. }
  32. }
  33. }