XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

fix(webui): add scrollbar to cards if needed (#429)

5c48a914
Sainan <sainan@calamity.gg>
提交于

代码差异

1 个文件 +5 -0
Modified static/webui/style.css +5 -0
@@ -27,3 +27,8 @@ td.text-end > a > svg {
27 27 margin-left: 0.5em;
28 28 margin-bottom: 4px; /* to centre the icon */
29 29 }
30
31 /* if an item name is super long, ensure it doesn't prevent the user from using actions */
32 .card-body {
33 overflow: auto;
34 }