|
@@ -111,24 +111,27 @@ onMounted(() => {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
<style lang="scss">
|
|
-@use "@/assets/scss/Scroll" as *;
|
|
|
|
-
|
|
|
|
.nana-rich-html-container {
|
|
.nana-rich-html-container {
|
|
position: relative;
|
|
position: relative;
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
- overflow-y: scroll;
|
|
|
|
-
|
|
|
|
- @include pc-fix-scrollbar();
|
|
|
|
|
|
|
|
.rich-html {
|
|
.rich-html {
|
|
flex: 1 1 100%;
|
|
flex: 1 1 100%;
|
|
}
|
|
}
|
|
.rich-html-catalog {
|
|
.rich-html-catalog {
|
|
- position: sticky;
|
|
|
|
- top: 0px;
|
|
|
|
|
|
+ position: fixed;
|
|
|
|
+ top: 140px;
|
|
|
|
+ right: 0;
|
|
|
|
+ bottom: 0px;
|
|
width: 15rem;
|
|
width: 15rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+@media (max-width: 1648px) {
|
|
|
|
+ .rich-html-catalog {
|
|
|
|
+ display: none;
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|