summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authoradlyq <[email protected]>2022-05-30 22:53:21 +0800
committeradlyq <[email protected]>2022-05-30 22:53:21 +0800
commitaa2a7150c1df28988bcf71aeb77c89d098be870e (patch)
tree353c9ad87f20ad6db70ff7b9e02aa0c0d1dc2fb4 /src/components
parentd467fb2e877569c6ca36374d710344f4f93e6dd4 (diff)
chore: loge page width
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Logs.module.scss2
-rw-r--r--src/components/Logs.tsx1
-rw-r--r--src/components/Search.module.scss4
3 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Logs.module.scss b/src/components/Logs.module.scss
index ee4254a..09e1134 100644
--- a/src/components/Logs.module.scss
+++ b/src/components/Logs.module.scss
@@ -31,7 +31,7 @@
/*******************/
.logsWrapper {
- margin: 40px;
+ margin: 25px;
padding: 10px;
background-color: var(--bg-log-info-card);
border-radius: 4px;
diff --git a/src/components/Logs.tsx b/src/components/Logs.tsx
index 481e822..8c53767 100644
--- a/src/components/Logs.tsx
+++ b/src/components/Logs.tsx
@@ -41,6 +41,7 @@ function LogLine({ time, payload, type }: LogLineProps) {
<span className={s.logType} style={{ color: colors[type]}}>
[ {logTypes[type]} ]
</span>
+ <br/>
<span className={s.logText} >{payload}</span>
</div>
);
diff --git a/src/components/Search.module.scss b/src/components/Search.module.scss
index 657c741..b2e133f 100644
--- a/src/components/Search.module.scss
+++ b/src/components/Search.module.scss
@@ -1,10 +1,10 @@
.RuleSearch {
- padding: 0 40px 5px;
+ padding: 0 25px 5px;
}
.RuleSearchContainer {
position: relative;
- height: 40px;
+ height: 30px;
}
.inputWrapper {