From 6be5917ced42f8014c5a6525f6e3a17600234901 Mon Sep 17 00:00:00 2001 From: Dawid Pietrykowski Date: Thu, 20 Oct 2022 16:57:37 +0200 Subject: [PATCH] Added css width declaration for other browsers --- src/components/LinkItems/Section.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/LinkItems/Section.vue b/src/components/LinkItems/Section.vue index 1d34a5b6..60d6c188 100644 --- a/src/components/LinkItems/Section.vue +++ b/src/components/LinkItems/Section.vue @@ -390,6 +390,8 @@ export default { .widget-base { min-width: 10rem; width: -webkit-fill-available; + width: -moz-available; + width: fill-available; } } }