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.

26 lines
452 B

3 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. @mixin component__buckets()
  7. {
  8. .buckets {
  9. &__item {
  10. display: block;
  11. border-radius: 4px;
  12. position: relative;
  13. padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  14. background-color: $primary;
  15. border: 1px solid darken($primary, 5%);
  16. .content {
  17. .title {
  18. color: $white;
  19. }
  20. }
  21. }
  22. }
  23. }