diff --git a/packages/hoppscotch-app/assets/icons/columns.svg b/packages/hoppscotch-app/assets/icons/columns.svg new file mode 100644 index 000000000..46ba287c4 --- /dev/null +++ b/packages/hoppscotch-app/assets/icons/columns.svg @@ -0,0 +1 @@ + diff --git a/packages/hoppscotch-app/components/app/Footer.vue b/packages/hoppscotch-app/components/app/Footer.vue index c5ea81d19..01e1f137b 100644 --- a/packages/hoppscotch-app/components/app/Footer.vue +++ b/packages/hoppscotch-app/components/app/Footer.vue @@ -118,6 +118,14 @@ :title="$t('request.share')" @click.native="nativeShare()" /> + - +
@@ -156,6 +160,7 @@ export default defineComponent({ return { windowInnerWidth: useWindowSize(), RIGHT_SIDEBAR: useSetting("RIGHT_SIDEBAR"), + COLUMN_LAYOUT: useSetting("COLUMN_LAYOUT"), } }, data() { diff --git a/packages/hoppscotch-app/components/realtime/Socketio.vue b/packages/hoppscotch-app/components/realtime/Socketio.vue index 42d6c3623..5f12433b0 100644 --- a/packages/hoppscotch-app/components/realtime/Socketio.vue +++ b/packages/hoppscotch-app/components/realtime/Socketio.vue @@ -5,7 +5,11 @@ :horizontal="!(windowInnerWidth.x.value >= 768)" > - +
@@ -176,6 +180,7 @@ export default defineComponent({ return { windowInnerWidth: useWindowSize(), RIGHT_SIDEBAR: useSetting("RIGHT_SIDEBAR"), + COLUMN_LAYOUT: useSetting("COLUMN_LAYOUT"), } }, data() { diff --git a/packages/hoppscotch-app/components/realtime/Sse.vue b/packages/hoppscotch-app/components/realtime/Sse.vue index ca78d4b1a..e5af74b02 100644 --- a/packages/hoppscotch-app/components/realtime/Sse.vue +++ b/packages/hoppscotch-app/components/realtime/Sse.vue @@ -1,5 +1,9 @@