M starkingdoms-client/src/components/ui/Checkbox.svelte => starkingdoms-client/src/components/ui/Checkbox.svelte +0 -1
@@ 55,7 55,6 @@
This sort of styling will replace the entire css/ directory eventually.
*/
-
.svcmp-Checkbox {
appearance: none;
background: transparent;
M starkingdoms-client/src/pages/Home.svelte => starkingdoms-client/src/pages/Home.svelte +5 -6
@@ 117,12 117,11 @@
</form>
</Popup>
-<span style="position: absolute; right: 0.5rem; top: 0.5rem; background-color: var(--bg-secondary-1);">
- <a href="/shipeditor/" style="color: var(--text)">
- <Button>
- Ship Editor
- </Button>
- </a>
+<span
+ style="position: absolute; right: 0.5rem; top: 0.5rem; background-color: var(--bg-secondary-1);">
+ <a href="/shipeditor/" style="color: var(--text)">
+ <Button>Ship Editor</Button>
+ </a>
</span>
<span class="footer-left">
M starkingdoms-client/src/pages/ShipEditor.svelte => starkingdoms-client/src/pages/ShipEditor.svelte +10 -5
@@ 25,20 25,25 @@
logger("Current view: ShipEditor.svelte");
</script>
-<span style="position: absolute; left: 0px; top: 0px; min-width: 20px; height: 100%; width: 250px; background-color: var(--bg-secondary-2)">
- <ul style="list-style-type: none; width: 100%; padding: 0px; display: inline-block;
+<span
+ style="position: absolute; left: 0px; top: 0px; min-width: 20px; height: 100%; width: 250px; background-color: var(--bg-secondary-2)">
+ <ul
+ style="list-style-type: none; width: 100%; padding: 0px; display: inline-block;
text-align: center; font-size: 48px; margin-block-start: 0px; margin-block-end: 0px;">
<li style="padding-top: 20px;">
<img src={tex_hearty} style="width: 50%" />
</li>
<li style="padding-top: 20px; vertical-align: middle; text-align: center">
- <span style="position: relative; display: inline-block; height: 2em; line-height: 2em">2</span>
+ <span
+ style="position: relative; display: inline-block; height: 2em; line-height: 2em">
+ 2
+ </span>
<img src={tex_hub} style="width: 2em" />
</li>
</ul>
</span>
-<span style="position: absolute; bottom: 0px; right: 0px; width: calc(100% - 250px); height: 20%; background-color: var(--bg-secondary-1)">
-
+<span
+ style="position: absolute; bottom: 0px; right: 0px; width: calc(100% - 250px); height: 20%; background-color: var(--bg-secondary-1)">
</span>
<canvas id="shipeditor" />