diff --git a/src/components/Settings/SettingsContainer.vue b/src/components/Settings/SettingsContainer.vue index 60c91ce7..93361d00 100644 --- a/src/components/Settings/SettingsContainer.vue +++ b/src/components/Settings/SettingsContainer.vue @@ -127,6 +127,8 @@ export default { localStorage.setItem(localStorageKeys.HIDE_SETTINGS, this.settingsVisible); }, getSettingsVisibility() { + const screenWidth = document.body.clientWidth; + if (screenWidth && screenWidth < 600) return false; return JSON.parse(localStorage[localStorageKeys.HIDE_SETTINGS] || (this.visibleComponents || defaultVisibleComponents).settings); },