feat: New table screen for ui

- Add table screen to ui examples
- Display table with placeholder content
- Add global function replaceLineBreaks()
This commit is contained in:
sthag 2026-02-13 11:39:52 +01:00
parent ddbd406fc8
commit 1b3a320b17
4 changed files with 133 additions and 0 deletions

View file

@ -0,0 +1,17 @@
@use "../../hippie-style/hippie";
main.io section > table {
table-layout: auto;
width: 100%;
margin: 0;
background-color: hippie.$color_back_io;
thead > tr > th:first-child {
width: 1%;
}
tr > th:first-child {
text-align: center;
}
}

View file

@ -10,6 +10,7 @@
@use "modules/ui/game_module";
@use "modules/ui/gallery_module";
@use "modules/ui/windows_module";
@use "modules/ui/table_module";
$color_gui_back: hippie.$color_dark;
$space_gui_half: hippie.$space_half;