From 0e9634e38b01495a1cdc2ed27a2a7e976a2ac2a2 Mon Sep 17 00:00:00 2001 From: Jonas Brunvoll Larsson Date: Thu, 30 May 2024 13:05:08 +0200 Subject: [PATCH] include comments. --- src/widget/widget.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/widget/widget.module.css b/src/widget/widget.module.css index 41194a81..db3b113e 100644 --- a/src/widget/widget.module.css +++ b/src/widget/widget.module.css @@ -321,14 +321,18 @@ .messageBox[hidden] { display: none; } + /** * Configurable options for widget */ + +/* Inherit the font from the web page using the widget. */ .inheritFont, .inheritFont * { font-family: inherit !important; } +/* Change the layout to a single column layout instead of the default layout. */ .singleColumnLayout .main { grid-template-columns: 1fr; }