From 9e570c53f1bc6a10117f70e2f8074fd39d3ee077 Mon Sep 17 00:00:00 2001 From: Sergey Smolnikov Date: Fri, 5 Jan 2024 16:22:10 +0100 Subject: [PATCH 1/2] Extend content area width --- public-site/docs/src/.vuepress/styles/index.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public-site/docs/src/.vuepress/styles/index.scss b/public-site/docs/src/.vuepress/styles/index.scss index cf9823ee..317f4e07 100644 --- a/public-site/docs/src/.vuepress/styles/index.scss +++ b/public-site/docs/src/.vuepress/styles/index.scss @@ -9,3 +9,6 @@ @import url('https://cdn.eds.equinor.com/font/equinor-mono.css'); +div.theme-default-content:not(.custom) { + max-width: 80rem; +} \ No newline at end of file From 8b50c66593ccbd8e024241ce85361286b6207f7f Mon Sep 17 00:00:00 2001 From: Sergey Smolnikov Date: Mon, 8 Jan 2024 09:36:39 +0100 Subject: [PATCH 2/2] Extend content area width --- public-site/docs/src/.vuepress/styles/index.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/public-site/docs/src/.vuepress/styles/index.scss b/public-site/docs/src/.vuepress/styles/index.scss index 317f4e07..275c3e5d 100644 --- a/public-site/docs/src/.vuepress/styles/index.scss +++ b/public-site/docs/src/.vuepress/styles/index.scss @@ -8,7 +8,8 @@ @import url('https://cdn.eds.equinor.com/font/equinor-uprights-vf.css'); @import url('https://cdn.eds.equinor.com/font/equinor-mono.css'); - -div.theme-default-content:not(.custom) { - max-width: 80rem; +div[class^='language-'] { + width: fit-content; + min-width: 100%; + max-width: 100vw; } \ No newline at end of file