From 943c45060dfe81df28172a12b6c1ad8c5cdfd1b8 Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Tue, 29 Mar 2022 18:16:31 +0530 Subject: [PATCH] fix: google search console mobile usability issues --- packages/hoppscotch-app/assets/scss/styles.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/hoppscotch-app/assets/scss/styles.scss b/packages/hoppscotch-app/assets/scss/styles.scss index 831fa4705..b3943ddfd 100644 --- a/packages/hoppscotch-app/assets/scss/styles.scss +++ b/packages/hoppscotch-app/assets/scss/styles.scss @@ -484,3 +484,10 @@ details summary::-webkit-details-marker { margin-bottom: env(safe-area-inset-bottom); } } + +// https://pqina.nl/blog/fix-google-mobile-usability-issues/ +:where(body, iframe, pre, img, svg, video, canvas, select) { + @apply max-w-full; + @apply overflow-auto; + @apply break-words; +}