diff --git a/index.html b/index.html index df964a5..f3fe836 100644 --- a/index.html +++ b/index.html @@ -128,8 +128,8 @@
You can use the following options to interact with the TPS. It works with the query string. Like so: - https://thinking-people-system.house?size=smallhttps://thinking-people-system.house?text=hide.
display: display without any HUD with the option
house-only
- size: can be small
- focus: focus only
a part of the TPS. Can be
diff --git a/main.ts b/main.ts
index c247224..aa05610 100644
--- a/main.ts
+++ b/main.ts
@@ -26,15 +26,6 @@ if (display === 'house-only') {
document.querySelectorAll('.hud')?.forEach((hud) => hud.remove())
}
-const size = params.get('size')
-
-if (size === 'small') {
- const body = document.querySelector('body')
- if (body) {
- body.style.fontSize = '15px'
- }
-}
-
const focusElements = params.getAll('focus')
if (focusElements.length > 0) {