diff options
Diffstat (limited to 'src/components/Selection.module.css')
| -rw-r--r-- | src/components/Selection.module.css | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/components/Selection.module.css b/src/components/Selection.module.css index c5181ca..ba47089 100644 --- a/src/components/Selection.module.css +++ b/src/components/Selection.module.css @@ -1,16 +1,23 @@ -.root { +.fieldset { + margin: 0; + padding: 0; + border: 0; display: flex; flex-wrap: wrap; } -.item { - flex-grow: 0; - margin-right: 10px; - margin-bottom: 10px; +.input + .cnt { + border: 1px solid transparent; + border-radius: 8px; cursor: pointer; - border: 2px solid transparent; + margin-right: 5px; + margin-bottom: 5px; } -.itemActive { +.input:focus + .cnt { + border-color: #387cec; +} + +.input:checked + .cnt { border-color: #387cec; } |
