|
@@ -1,5 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div ref="pageShellRef" class="page-shell">
|
|
|
|
|
|
|
+ <div
|
|
|
|
|
+ ref="pageShellRef"
|
|
|
|
|
+ class="page-shell"
|
|
|
|
|
+ :class="{ 'is-hide-scrollbar': route.name === 'mcpOnlineTest' }"
|
|
|
|
|
+ >
|
|
|
<Header
|
|
<Header
|
|
|
v-if="showDesktopHeader && !isFullScreen"
|
|
v-if="showDesktopHeader && !isFullScreen"
|
|
|
:is-logged-in="Boolean(WEBSID)"
|
|
:is-logged-in="Boolean(WEBSID)"
|
|
@@ -88,6 +92,18 @@ onBeforeMount(async () => {
|
|
|
min-height: 0;
|
|
min-height: 0;
|
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
|
scrollbar-gutter: stable;
|
|
scrollbar-gutter: stable;
|
|
|
|
|
+
|
|
|
|
|
+ &.is-hide-scrollbar {
|
|
|
|
|
+ scrollbar-gutter: auto;
|
|
|
|
|
+ scrollbar-width: none;
|
|
|
|
|
+ -ms-overflow-style: none;
|
|
|
|
|
+
|
|
|
|
|
+ &::-webkit-scrollbar {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ width: 0;
|
|
|
|
|
+ height: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.page-main {
|
|
.page-main {
|