summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHaishan <[email protected]>2018-12-06 21:58:39 +0800
committerHaishan <[email protected]>2018-12-07 00:19:56 +0800
commitfdf69dbfe206db38e40b600f6b2cce963380937e (patch)
tree4b3a4da8377727d028c14b96845605876bbaa076 /src
parent8c5ef3e276f7c8c672601ad98ff9c1c5e1b5c2a3 (diff)
change: add logging level 'silent'
Diffstat (limited to 'src')
-rw-r--r--src/components/Config.js4
-rw-r--r--src/components/Config.module.scss2
-rw-r--r--src/components/ToggleSwitch.module.scss2
3 files changed, 6 insertions, 2 deletions
diff --git a/src/components/Config.js b/src/components/Config.js
index e8fbfba..e72d5f9 100644
--- a/src/components/Config.js
+++ b/src/components/Config.js
@@ -41,6 +41,10 @@ const optionsLogLevel = [
{
label: 'debug',
value: 'debug'
+ },
+ {
+ label: 'silent',
+ value: 'silent'
}
];
diff --git a/src/components/Config.module.scss b/src/components/Config.module.scss
index c5344cb..0948159 100644
--- a/src/components/Config.module.scss
+++ b/src/components/Config.module.scss
@@ -3,7 +3,7 @@
color: #ddd;
> div {
- width: 340px;
+ width: 360px;
}
}
diff --git a/src/components/ToggleSwitch.module.scss b/src/components/ToggleSwitch.module.scss
index 3e4bde4..53fa16b 100644
--- a/src/components/ToggleSwitch.module.scss
+++ b/src/components/ToggleSwitch.module.scss
@@ -18,7 +18,7 @@
display: flex;
align-items: center;
justify-content: center;
- padding: 10px;
+ padding: 10px 0;
cursor: pointer;
}
}