some kind of way to stop dots from showing up

master
Matt Huntington 8 years ago
parent 8a02443b86
commit 5425befd9e

@ -1,6 +1,9 @@
body { body {
margin: 20px 40px; margin: 20px 40px;
} }
#container {
overflow: hidden;
}
circle { circle {
r: 5; r: 5;
fill: black; fill: black;
@ -15,7 +18,8 @@ circle:active {
} }
svg { svg {
overflow: visible; overflow: visible;
margin-bottom: 50px; margin-bottom: 20px;
margin-left: 30px;
} }
table, th, td { table, th, td {

@ -6,9 +6,11 @@
<link rel="stylesheet" href="app.css"> <link rel="stylesheet" href="app.css">
</head> </head>
<body> <body>
<svg> <div id="container">
<g id="points"></g> <svg>
</svg> <g id="points"></g>
</svg>
</div>
<table> <table>
<thead> <thead>
<tr> <tr>

Loading…
Cancel
Save