summaryrefslogtreecommitdiff
path: root/src/components/Logs.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Logs.module.css')
-rw-r--r--src/components/Logs.module.css75
1 files changed, 0 insertions, 75 deletions
diff --git a/src/components/Logs.module.css b/src/components/Logs.module.css
deleted file mode 100644
index 508e9c6..0000000
--- a/src/components/Logs.module.css
+++ /dev/null
@@ -1,75 +0,0 @@
-.logMeta {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- font-size: 0.9em;
-}
-
-.logType {
- color: #eee;
- flex-shrink: 0;
- text-align: center;
- width: 66px;
- border-radius: 100px;
- padding: 3px 5px;
- margin: 0 8px;
-}
-
-.logTime {
- flex-shrink: 0;
- color: #999;
- font-size: 14px;
-}
-
-.logText {
- flex-shrink: 0;
- display: flex;
- font-family: 'Roboto Mono', Menlo, monospace;
- align-items: center;
- padding: 8px 0;
- /* force wrap */
- width: 100%;
- white-space: pre;
- overflow: auto;
-}
-
-/*******************/
-
-.logsWrapper {
- margin: 0;
- padding: 0;
- color: var(--color-text);
-
- :global {
- li {
- background: var(--color-background);
- }
- li.even {
- background: var(--color-background);
- }
- }
-}
-
-.log {
- padding: 10px 40px;
-}
-
-/*******************/
-
-.logPlaceholder {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: #2d2d30;
-
- div:nth-child(2) {
- color: var(--color-text-secondary);
- font-size: 1.4em;
- opacity: 0.6;
- }
-}
-
-.logPlaceholderIcon {
- opacity: 0.3;
-}