Loading...
else
Root: {this.state.cfg.Root}
{if this.state.cfg.Games.length < 1
-
No games defined. Please use CLI.
+
No games defined. Please use CLI.
else
- {this.state.cfg.Games.map((game) =>
- - {game.Name}
- )}
+ {this.state.cfg.Games.map((game) => )}
}
diff --git a/js/src/index.less b/js/src/index.less
index 0c6142e..542a39b 100644
--- a/js/src/index.less
+++ b/js/src/index.less
@@ -11,3 +11,44 @@ div.footer {
div.error {
color: red;
}
+
+div.gameInfo {
+ display: block;
+ font-size: 0.8em;
+ padding: 0.5em;
+}
+
+span {
+ display: inline-block;
+}
+
+span.gameName {
+ width: 32em;
+}
+
+span.gameStamp {
+ font-family: monospace;
+ font-size: 0.8em;
+}
+
+a.knob {
+ display: inline-block;
+ width: 3.5em;
+ font-family: monospace;
+}
+a.knob:hover {
+ color: yellow;
+}
+
+a.info {
+ display: inline-block;
+ width: 2.5em;
+ font-family: monospace;
+}
+a.info:hover {
+ color: yellow;
+}
+
+li.gameInfo {
+ display: block;
+}
From 3e8047c478f381b1735e22ad5cebe50f3ff2ae0c Mon Sep 17 00:00:00 2001
From: "Piotr S. Staszewski"