File size: 277 Bytes
d712cef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | .dot-grid {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
position: relative;
}
.dot-grid__wrap {
width: 100%;
height: 100%;
position: relative;
}
.dot-grid__canvas {
position: absolute;
pointer-events: none;
}
|