Add compact table and update themes

This commit is contained in:
Geomitron
2023-12-25 11:23:50 -06:00
parent f931a1b221
commit 0abf801c7e
9 changed files with 99 additions and 68 deletions

View File

@@ -82,4 +82,12 @@ export class SettingsService {
this.settings.isSng = value
this.saveSettings()
}
get isCompactTable() {
return this.settings.isCompactTable
}
set isCompactTable(value: boolean) {
this.settings.isCompactTable = value
this.saveSettings()
}
}