help/rtfd/public/web/script/debug.js
2025-01-28 21:41:03 +01:00

10 lines
201 B
JavaScript

const body = document.body
const style = window.getComputedStyle(body)
const font_size = style.fontSize
const debug = document.getElementById("debug")
debug.innerHTML = `Font size = ${font_size}`