From 468822ffcb96c6f01fa851f2a02d6f41ebdf4726 Mon Sep 17 00:00:00 2001 From: Darren Griffin Date: Fri, 17 Jan 2025 13:11:53 +0000 Subject: [PATCH] Fix table overflow and sizing (#36970) --- sass/homeassistant/_overrides.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sass/homeassistant/_overrides.scss b/sass/homeassistant/_overrides.scss index d7ecf1f4585..e13d4d81983 100644 --- a/sass/homeassistant/_overrides.scss +++ b/sass/homeassistant/_overrides.scss @@ -1130,7 +1130,11 @@ article.listing { &>table, &>.entry-content>table { background-color: #fff; + display: block; + overflow-x: auto; table-layout: auto; + width: fit-content; + max-width: 100%; &>thead { background-color: rgba(0, 0, 0, .025);