Unverified Commit eb99f828 authored by NGPixel's avatar NGPixel

fix: edit buttons hidden when toc sidebar is on the right

parent f3133a72
...@@ -53,8 +53,8 @@ ...@@ -53,8 +53,8 @@
v-col.page-col-content.is-page-header( v-col.page-col-content.is-page-header(
:offset-xl='tocPosition === `left` ? 2 : 0' :offset-xl='tocPosition === `left` ? 2 : 0'
:offset-lg='tocPosition === `left` ? 3 : 0' :offset-lg='tocPosition === `left` ? 3 : 0'
:xl10='tocPosition === `right`' :xl='tocPosition === `right` ? 10 : false'
:lg9='tocPosition === `right`' :lg='tocPosition === `right` ? 9 : false'
style='margin-top: auto; margin-bottom: auto;' style='margin-top: auto; margin-bottom: auto;'
:class='$vuetify.rtl ? `pr-4` : `pl-4`' :class='$vuetify.rtl ? `pr-4` : `pl-4`'
) )
...@@ -736,9 +736,13 @@ export default { ...@@ -736,9 +736,13 @@ export default {
.page-header-section { .page-header-section {
position: relative; position: relative;
> .is-page-header {
position: relative;
}
.page-edit-shortcuts { .page-edit-shortcuts {
position: absolute; position: absolute;
bottom: -14px; bottom: -43px;
right: 10px; right: 10px;
.v-btn { .v-btn {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment