From 882b168082ddbcbe7991a71a09944f1a60084fc3 Mon Sep 17 00:00:00 2001 From: Haishan Date: Sun, 21 Apr 2019 00:05:44 +0800 Subject: squash: feat(config): add options to select traffic chart style --- src/components/Selection.module.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/components/Selection.module.css (limited to 'src/components/Selection.module.css') diff --git a/src/components/Selection.module.css b/src/components/Selection.module.css new file mode 100644 index 0000000..a562058 --- /dev/null +++ b/src/components/Selection.module.css @@ -0,0 +1,17 @@ +.root { + display: flex; + flex-wrap: wrap; +} + +.item { + flex-grow: 0; + flex-wrap: 0; + margin-right: 10px; + margin-bottom: 10px; + cursor: pointer; + border: 2px solid transparent; +} + +.itemActive { + border-color: #387cec; +} -- cgit v1.3.1