grid-overlay-vertical.css 359 B

12345678910111213141516
  1. {{selector}}:before {
  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(90deg, {{color}} 1px, transparent 1px);
  15. background-size: {{size}} 100%;
  16. }