From 05dee0bf3707b5b6e3997d901a941db9b87f74df Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 13 Sep 2023 17:31:57 +0000 Subject: [PATCH] fix tab styles --- styles.css | 6 ++++++ tab.scss | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/styles.css b/styles.css index c254280..a5e2c53 100755 --- a/styles.css +++ b/styles.css @@ -4705,6 +4705,8 @@ section > h2 { display: flex; flex: 1; flex-direction: column; } +.tabview .tab { + max-width: 100%; } .tabview.right > .box { order: 2; } @@ -4720,6 +4722,8 @@ section > h2 { background: var(--button-colored-background); } .tab-1 .tab-links li { margin: 0 5px 0 0; } +.tab-1 .tab { + max-width: 100%; } .tab-1 .tab-content { box-sizing: border-box; border: 1px solid var(--button-colored-background); @@ -4742,6 +4746,8 @@ section > h2 { display: flex; flex: 1; flex-direction: column; } + .tab-2 .tab { + max-width: 100%; } .tab-2 .tab-links label { padding: 5px 10px 5px 10px; } .tab-2 .tab-links li { diff --git a/tab.scss b/tab.scss index 9250d72..d4f46ee 100755 --- a/tab.scss +++ b/tab.scss @@ -55,6 +55,10 @@ } } + .tab { + max-width: 100%; + } + &.right > .box { order: 2; } @@ -81,6 +85,10 @@ } } + .tab { + max-width: 100%; + } + .tab-content { box-sizing: border-box; border: 1px solid var(--button-colored-background); @@ -117,6 +125,10 @@ flex: 1; flex-direction: column; + .tab { + max-width: 100%; + } + .tab-links { label { padding: 5px 10px 5px 10px;