diff --git a/docs/pages/quickstart.md b/docs/pages/quickstart.md index 32f02f5..72dd68d 100644 --- a/docs/pages/quickstart.md +++ b/docs/pages/quickstart.md @@ -49,44 +49,44 @@ const selection = new SelectionArea({ ```css [styles.css] .container { - display: flex; - flex-wrap: wrap; - justify-content: space-evenly; - border-radius: 15px; - padding: 15px; - margin: 15px 0; - user-select: none; + display: flex; + flex-wrap: wrap; + justify-content: center; + border-radius: 15px; + padding: 10px; + margin: 15px 0; + user-select: none; } .container div { - height: 50px; - width: 50px; - margin: 3px; - background: rgba(66, 68, 90, 0.075); - border-radius: 10px; - cursor: pointer; + height: 50px; + width: 50px; + margin: 4px; + background: rgba(66, 68, 90, 0.075); + border-radius: 5px; + cursor: pointer; } .container.blue { - border: 2px dashed #a8b1ff; + border: 2px dashed #a8b1ff; } .container.purple { - border: 2px dashed #c8abfa; + border: 2px dashed #c8abfa; } .container.blue div.selected { - background: #5c73e7; + background: #5c73e7; } .container.purple div.selected { - background: #a879e6; + background: #a879e6; } .selectionArea { - background: rgba(102, 110, 255, 0.16); - border: 1px solid rgb(62, 99, 221); - border-radius: 0.15em; + background: rgba(102, 110, 255, 0.16); + border: 1px solid rgb(62, 99, 221); + border-radius: 0.15em; } ``` @@ -99,21 +99,31 @@ const selection = new SelectionArea({ Which will give you something like this: -
+