grid-overlay-horizontal.css 352 B

12345678910111213141516
  1. {{selector}}:after {
  2. position: absolute;
  3. width: auto;
  4. height: auto;
  5. z-index: 9999;
  6. content: '';
  7. display: block;
  8. pointer-events: none;
  9. top: {{offsetY}};
  10. right: 0;
  11. bottom: 0;
  12. left: {{offsetX}};
  13. background-color: transparent;
  14. background-image: linear-gradient({{color}} 1px, transparent 1px);
  15. background-size: 100% {{size}};
  16. }