From ff0db7fa3dc5386de526331703d198b24fe04790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simen=20Heggest=C3=B8yl?= Date: Mon, 25 Sep 2023 13:48:26 +0200 Subject: [PATCH] Fix dropdown cropping when creating new items Fix cropping of dropdown menus when creating new organizations/departments/products. The removed CSS snippet was originally added to fix a layout bug in the new OKR sidebar view in Firefox. That problem doesn't seem to be present anymore, so the snippet should be safe to remove. --- CHANGELOG.md | 2 ++ src/components/layout/PageLayout.vue | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d2201e2..b3597ed7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ All notable changes to this project will be documented in this file. The format - Improved WCAG compliance with respect to text color contrast. - Fixed a problem that would sometimes cause an "infinite spinner" when a new version of the app was deployed. +- Fixed cropping of dropdown menus when creating new + organizations/departments/products. ### Changed diff --git a/src/components/layout/PageLayout.vue b/src/components/layout/PageLayout.vue index 8f915f419..8b4fa4847 100644 --- a/src/components/layout/PageLayout.vue +++ b/src/components/layout/PageLayout.vue @@ -101,10 +101,6 @@ export default { } } - &__main { - overflow-x: hidden; - } - &__footer { margin-top: auto; }