From 53a7020523e583ee220f88d06daed08306985c2e Mon Sep 17 00:00:00 2001 From: a-f-may <104366117+a-f-may@users.noreply.github.com> Date: Sun, 30 Oct 2022 00:37:43 +0900 Subject: [PATCH 1/3] feat: resizable sidebar --- lib/graphql-docs/layouts/default.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lib/graphql-docs/layouts/default.html b/lib/graphql-docs/layouts/default.html index de660c1..1cba46f 100644 --- a/lib/graphql-docs/layouts/default.html +++ b/lib/graphql-docs/layouts/default.html @@ -7,6 +7,11 @@ <%= title || name %> + + + + + From d9ebeb3eb34fb55a15509d009eca9ffc0c9d3a01 Mon Sep 17 00:00:00 2001 From: a-f-may <104366117+a-f-may@users.noreply.github.com> Date: Sun, 30 Oct 2022 00:42:36 +0900 Subject: [PATCH 2/3] fix: Set limit the resizable range of sidebarw --- lib/graphql-docs/layouts/default.html | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/graphql-docs/layouts/default.html b/lib/graphql-docs/layouts/default.html index 1cba46f..3446acb 100644 --- a/lib/graphql-docs/layouts/default.html +++ b/lib/graphql-docs/layouts/default.html @@ -30,6 +30,7 @@ $(function() { $("#sidebar").resizable({ maxWidth:350, + minWidth:200, handles:"e", }); }); From 9ecbe94a006a199054ba54c3789c3994fb2c6711 Mon Sep 17 00:00:00 2001 From: a-f-may <104366117+a-f-may@users.noreply.github.com> Date: Sun, 30 Oct 2022 00:46:52 +0900 Subject: [PATCH 3/3] feat: resizable sidebar