-
Hi, I'm writing a documentation with lots of numerical tables that feel way too big. I want to reduce the font table size, but I couldn't find the CSS variable. Is there a specific variable that controls this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Do you have any example page for me to look at for this? |
Beta Was this translation helpful? Give feedback.
-
To answer the question asked: No, there's no direct CSS variable for this. You can inject CSS, as documented in https://pradyunsg.me/furo/customisation/injecting/, to achieve this: table {
font-size: 0.875rem; /* using rem to respect end user's browser configuration of font sizes */
} |
Beta Was this translation helpful? Give feedback.
-
That's perfect! Thanks! |
Beta Was this translation helpful? Give feedback.
To answer the question asked: No, there's no direct CSS variable for this.
You can inject CSS, as documented in https://pradyunsg.me/furo/customisation/injecting/, to achieve this: