Skip to content

Commit 544af17

Browse files
committed
überflüssigen gesamtscrollbalken entfernen
1 parent 46b35e7 commit 544af17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
88
<title><%= htmlWebpackPlugin.options.title %></title>
99
</head>
10-
<body style="height:100%;padding: 0;">
10+
<body style="height:100%;padding: 0;overflow:hidden">
1111
<noscript>
1212
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
1313
</noscript>

src/components/Home.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</button>
2525
</template>
2626
</vue3-tabs-chrome>
27-
<div v-if="currentTab" style="flex-grow: 1;overflow:auto;display: flex;flex-direction: row">
27+
<div v-if="currentTab" style="flex-grow: 1;overflow:hidden;display: flex;flex-direction: row">
2828
<div class="loader" v-if="showLoader">
2929
<div id="loading"></div>
3030
<h1>{{ t("validatingFile", {}, {locale: lang}) }}</h1>
@@ -36,7 +36,7 @@
3636
</div>
3737
<div v-if="currentTab?.isShowXML || currentTab?.isXML" class="full-height" style="flex: 1"
3838
:class="{ rightPart: (currentTab?.isPdf)&&(currentTab?.isShowXML) }">
39-
<div class="xmlViewer full-height" id="xmlViewer" name="xmlViewer" v-html="currentTab?.content">
39+
<div class="xmlViewer full-height" id="xmlViewer" name="xmlViewer" v-html="currentTab?.content">
4040
</div>
4141
</div>
4242
</div>

0 commit comments

Comments
 (0)