diff --git a/README.md b/README.md index 1c703a3..49097fb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Amtrak Status Boards, or AMTK Status, is a desktop front-end for accessing Dixieland Software's [station status boards](https://dixielandsoftware.net/Amtrak/solari/). -**WARNING: RESOLUTION IS LARGE.** +**WARNING: LARGE RESOLUTION.** ## Background @@ -19,4 +19,8 @@ Before you begin, ensure you have the latest versions of the following installed ## License -I license this project under the GPL-2.0 license - see [LICENSE](LICENSE) for details. \ No newline at end of file +I license this project under the GPL-2.0 license - see [LICENSE](LICENSE) for details. + +## Disclaimer + +*This project is not in any way affiliated with Amtrak or Dixieland Software.* \ No newline at end of file diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 766a227..69a5968 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "AMTK Status", - "version": "0.1.100" + "version": "0.1.101" }, "tauri": { "allowlist": { diff --git a/src/Pages/Home.razor b/src/Pages/Home.razor index b4eeaf2..2509da1 100644 --- a/src/Pages/Home.razor +++ b/src/Pages/Home.razor @@ -4,22 +4,26 @@
- - + +
-

Status Maps by Dixieland Software

+ + +

Status Boards by Dixieland Software

+
+
@code { - private string? GreetInput { get; set; } + private string? CodeInput { get; set; } - private string? GreetMsg { get; set; } + private string? StationCode { get; set; } private async Task GreetAsync() { - GreetMsg = await JsRuntime.InvokeAsync("__TAURI__.tauri.invoke", "greet", new { name = GreetInput }); + StationCode = await JsRuntime.InvokeAsync("__TAURI__.tauri.invoke", "greet", new { name = CodeInput }); - NavigationManager.NavigateTo(GreetMsg); + NavigationManager.NavigateTo(StationCode); } } diff --git a/src/Pages/Stats.razor b/src/Pages/Stats.razor deleted file mode 100644 index 8006813..0000000 --- a/src/Pages/Stats.razor +++ /dev/null @@ -1,7 +0,0 @@ -@page "/stats" - - - -@code { - [Parameter] public string Navigate { get; set; } = string.Empty; -} \ No newline at end of file diff --git a/src/wwwroot/css/app.css b/src/wwwroot/css/app.css index 0347af2..690554a 100644 --- a/src/wwwroot/css/app.css +++ b/src/wwwroot/css/app.css @@ -1,6 +1,7 @@ .logo.blazor:hover { filter: drop-shadow(0 0 2em #5c2d91); } + :root { font-family: Inter, Avenir, Helvetica, Arial, sans-serif; font-size: 16px; @@ -17,7 +18,8 @@ -webkit-text-size-adjust: 100%; } -.container { +.container, +footer { margin: 0; padding-top: 10vh; display: flex; @@ -77,6 +79,7 @@ button { button:hover { border-color: #396cd8; } + button:active { border-color: #396cd8; background-color: #e8e8e8; @@ -106,7 +109,8 @@ button { color: #ffffff; background-color: #0f0f0f98; } + button:active { background-color: #0f0f0f69; } -} +} \ No newline at end of file