summaryrefslogtreecommitdiff
path: root/src/components/Logs.module.scss
diff options
context:
space:
mode:
authorLarvan2 <[email protected]>2026-04-18 14:18:28 +0800
committerLarvan2 <[email protected]>2026-04-18 14:18:28 +0800
commit2cf83223f6d4b551998e8cd8f74fcec5e7ffd8ae (patch)
tree9d9acd7e88ca8af2d34c9ef34b853b8d90f3c2ea /src/components/Logs.module.scss
parentfd39af8af5e2e6ba88f8ba2ac3e6101aeda2b6c1 (diff)
fix(logs): improve log fetching and add log level selection
Diffstat (limited to 'src/components/Logs.module.scss')
-rw-r--r--src/components/Logs.module.scss14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/components/Logs.module.scss b/src/components/Logs.module.scss
index 87492c7..c90071d 100644
--- a/src/components/Logs.module.scss
+++ b/src/components/Logs.module.scss
@@ -25,6 +25,12 @@
}
}
+.levelSelect {
+ flex-shrink: 0;
+ width: auto;
+ min-width: 90px;
+}
+
.clearBtn {
background: none;
border: none;
@@ -35,7 +41,9 @@
display: flex;
align-items: center;
justify-content: center;
- transition: background-color 0.2s, color 0.2s;
+ transition:
+ background-color 0.2s,
+ color 0.2s;
&:hover {
background-color: var(--bg-near-transparent);
@@ -119,7 +127,9 @@
border-radius: 8px;
color: var(--color-text);
overflow-y: auto;
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow:
+ 0 4px 6px -1px rgba(0, 0, 0, 0.1),
+ 0 2px 4px -1px rgba(0, 0, 0, 0.06);
@media (max-width: 768px) {
margin: 10px 15px;