diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-11-19 15:57:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 15:57:16 +0100 |
commit | 1563946aa2757baad48ff05732356f78e82dd4e6 (patch) | |
tree | 0481d391ff397c7d4be93a7224c3717e03ae2b3f /g4f/gui/client/static/css/style.css | |
parent | Merge pull request #2378 from hlohaus/info (diff) | |
parent | Add show log option to gui (diff) | |
download | gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.gz gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.bz2 gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.lz gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.xz gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.zst gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.zip |
Diffstat (limited to 'g4f/gui/client/static/css/style.css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index 3ee033ea..8364216a 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -1051,13 +1051,22 @@ a:-webkit-any-link { padding: var(--inner-gap) var(--inner-gap) var(--inner-gap) 0; } -.settings, .images { +.settings, .log { width: 100%; display: flex; flex-direction: column; overflow: auto; } +.log { + white-space: pre-wrap; + font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace; +} + +.log.hidden { + display: none; +} + .settings .paper { flex-direction: column; min-width: 400px; |