_counters.scss 530 B

123456789101112131415161718192021222324
  1. @include respond-to('tablet') {
  2. .counter-style-06 {
  3. .feature-box {
  4. &:nth-last-child(2n+1) {
  5. .feature-box-content {
  6. &:after {
  7. display:none;
  8. }
  9. }
  10. }
  11. }
  12. }
  13. }
  14. @include respond-to('phone-portrait') {
  15. .counter-style-06 {
  16. .feature-box {
  17. .feature-box-content {
  18. &:after {
  19. display:none;
  20. }
  21. }
  22. }
  23. }
  24. }