1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-11-24 05:50:12 +01:00

fix styling

This commit is contained in:
4yn 2022-03-23 01:15:38 +08:00
parent 2fb8995e68
commit 169d981e6f
3 changed files with 8 additions and 7 deletions

View File

@ -16,10 +16,6 @@ body {
user-select: none; user-select: none;
} }
pre {
font-family: monospace;
}
body { body {
margin: 0; margin: 0;
padding: 1rem; padding: 1rem;
@ -113,6 +109,11 @@ body {
font-size: 0.75rem; font-size: 0.75rem;
} }
.iplist {
font-family: monospace;
white-space: pre;
}
input, input,
select { select {
width: 100%; width: 100%;

View File

@ -60,7 +60,7 @@
{ {
"title": "slidershim", "title": "slidershim",
"width": 500, "width": 500,
"height": 550, "height": 600,
"resizable": false, "resizable": false,
"fullscreen": false, "fullscreen": false,
"decorations": false, "decorations": false,

View File

@ -210,12 +210,12 @@
<div class="input"> <div class="input">
<div class="serverlist"> <div class="serverlist">
Brokenithm server running, access at one of: Brokenithm server running, access at one of:
<pre> <div class="iplist">
{ips {ips
.map((x) => `http://${x}:1606/`) .map((x) => `http://${x}:1606/`)
.join("\n") .join("\n")
.trim()} .trim()}
</pre> </div>
</div> </div>
</div> </div>
</div> </div>