Wrap InfoOverlay in <tbody>

This commit is contained in:
2026-02-20 19:19:23 -05:00
parent 1769127342
commit 9c348ee448
3 changed files with 23 additions and 31 deletions

View File

@@ -14,21 +14,12 @@
{ {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
# Node.js LTS with npm nodejs_25
nodejs_20
# Go for backend
go go
# Build tools
pkg-config pkg-config
# Development utilities
git git
curl curl
jq jq
# Optional: for better development experience
gnumake gnumake
]; ];

View File

@@ -1,5 +1,4 @@
<script> <script>
import InfoOverlay from "./components/InfoOverlay.vue";
import axios from "axios"; import axios from "axios";
import dayjs from "dayjs"; import dayjs from "dayjs";
import utc from "dayjs/plugin/utc"; import utc from "dayjs/plugin/utc";

View File

@@ -7,26 +7,28 @@
</a> </a>
<h3>Keyboard Shortcuts</h3> <h3>Keyboard Shortcuts</h3>
<table class="shortcuts-table"> <table class="shortcuts-table">
<tr> <tbody>
<td><strong>r</strong></td> <tr>
<td>Refresh deals</td> <td><strong>r</strong></td>
</tr> <td>Refresh deals</td>
<tr> </tr>
<td><strong>s</strong></td> <tr>
<td>Toggle sort</td> <td><strong>s</strong></td>
</tr> <td>Toggle sort</td>
<tr> </tr>
<td><strong>v</strong></td> <tr>
<td>Toggle view mode</td> <td><strong>v</strong></td>
</tr> <td>Toggle view mode</td>
<tr> </tr>
<td><strong>t</strong></td> <tr>
<td>Toggle theme</td> <td><strong>t</strong></td>
</tr> <td>Toggle theme</td>
<tr> </tr>
<td><strong>/</strong></td> <tr>
<td>Filter deals</td> <td><strong>/</strong></td>
</tr> <td>Filter deals</td>
</tr>
</tbody>
</table> </table>
<button class="close-button" @click="closeOverlay">Close</button> <button class="close-button" @click="closeOverlay">Close</button>
</div> </div>