From 713d98a36f15f121eb234dce660bf9ba5b668c89 Mon Sep 17 00:00:00 2001 From: Pratik Gholap <65550720+soham283@users.noreply.github.com> Date: Mon, 7 Jun 2021 18:03:48 +0530 Subject: [PATCH] Fontsizing for tables, code tags fixing issue (#3694) (#3739) * Text sizing for notes, tables, warnings for normal display * Text sizing for notes, tables, warnings for normal display --- docs/stylesheets/extra.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index b91ca5105..a617a2f95 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -45,3 +45,16 @@ margin: 0; padding: 0; } + +/* text sizing of tables, Alert, Warnings, Notes*/ +.md-typeset table { + font-size: 100% !important; +} + +.md-typeset code { + font-size: 100% !important; +} + +.md-typeset .admonition { + font-size: 100% !important; +}