aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/MainLayout.vue
diff options
context:
space:
mode:
authorpacien2023-07-26 01:12:17 +0200
committerpacien2023-07-26 01:12:17 +0200
commit8951f65d116b020bc95ba509c1ecf69b24bec1f0 (patch)
tree07ec167ecb1589b74fd93418196256edad9a2f0d /viewer/src/views/MainLayout.vue
parent46cd42de44e402fbf33522d999fa2649729ffaa8 (diff)
parentf187b6f2653092d4034ec1561280d286f956c36e (diff)
downloadldgallery-master.tar.gz
Merge branch 'develop': release v2.3HEADv2.3masterdevelop
Diffstat (limited to 'viewer/src/views/MainLayout.vue')
-rw-r--r--viewer/src/views/MainLayout.vue8
1 files changed, 8 insertions, 0 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue
index 30bfe97..5cac863 100644
--- a/viewer/src/views/MainLayout.vue
+++ b/viewer/src/views/MainLayout.vue
@@ -128,6 +128,14 @@ function validateSpashScreen() {
128 left: var(--layout-left); 128 left: var(--layout-left);
129 z-index: 3; 129 z-index: 3;
130 overflow-x: hidden; 130 overflow-x: hidden;
131
132 // Forbid overflow when resizing.
133 // Necessary for the resize handle to be selectable on qutebrowser.
134 max-width: calc(100% - var(--layout-left) - $scrollbar-width);
135 margin: 0 auto; // Center
136 resize: horizontal;
137 // ---
138
131 &:focus { 139 &:focus {
132 outline: none; 140 outline: none;
133 } 141 }