Less redraw of station map, fix end date, some styling

This commit is contained in:
Guntis Smaukstelis
2024-01-21 21:06:32 +02:00
parent 6b0df1b8d5
commit 99fb82c3fb
6 changed files with 35 additions and 17 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Component } from "solid-js";
export const Spacer: Component<{ padding?: string; }> = ({ padding }) => {
return (
<div style={{ display: "inline-block", padding: padding ?? "5px" }}></div>
);
}