diff options
author | EyeDeck <eyedeck@gmail.com> | 2022-09-17 04:49:31 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-17 06:15:16 +0000 |
commit | ed6787ca2fe950f633a925ccb0467eafd4ec0f43 (patch) | |
tree | 390b50f5f940efd255e5bf7f38ce6ca785cc4cf4 /style.css | |
parent | 1fc1c537c7303be88e0da93c3a632c48acb101e9 (diff) | |
download | stable-diffusion-webui-gfx803-ed6787ca2fe950f633a925ccb0467eafd4ec0f43.tar.gz stable-diffusion-webui-gfx803-ed6787ca2fe950f633a925ccb0467eafd4ec0f43.tar.bz2 stable-diffusion-webui-gfx803-ed6787ca2fe950f633a925ccb0467eafd4ec0f43.zip |
Add VRAM monitoring
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -1,5 +1,21 @@ .output-html p {margin: 0 0.5em;}
-.performance { font-size: 0.85em; color: #444; }
+
+.performance {
+ font-size: 0.85em;
+ color: #444;
+ display: flex;
+ justify-content: space-between;
+ white-space: nowrap;
+}
+
+.performance .time {
+ margin-right: 0;
+}
+
+.performance .vram {
+ margin-left: 0;
+ text-align: right;
+}
#generate{
min-height: 4.5em;
|