From 5d30c906775c99bd82ef50136e63d974d65ab130 Mon Sep 17 00:00:00 2001 From: Patricio Beltran Date: Mon, 11 Nov 2019 17:43:49 -0800 Subject: [PATCH] Add overflow hidden to workspace container --- CHANGELOG.md | 4 ++++ lib/components/Navigation/Navigation.module.scss | 1 - lib/components/Shell/Shell.module.scss | 1 + package-lock.json | 2 +- package.json | 2 +- 5 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55b95b4..956cc40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 7.0.3 +### Fixed +- Add overflow hidden to workspace container + ## 7.0.2 ### Fixed - Made workspace to be a flex container without overflow specified diff --git a/lib/components/Navigation/Navigation.module.scss b/lib/components/Navigation/Navigation.module.scss index 1d6120f..5695080 100644 --- a/lib/components/Navigation/Navigation.module.scss +++ b/lib/components/Navigation/Navigation.module.scss @@ -162,6 +162,5 @@ $activeBorderHeight: $layout-nav-item-height - (4*$grid-size); .global-nav-items { display: flex; flex-direction: column; - height: 100%; justify-content: space-between; } diff --git a/lib/components/Shell/Shell.module.scss b/lib/components/Shell/Shell.module.scss index 448709a..8533308 100644 --- a/lib/components/Shell/Shell.module.scss +++ b/lib/components/Shell/Shell.module.scss @@ -61,4 +61,5 @@ background-color: var(--color-bg-container); display: flex; flex-direction: column; + overflow: hidden; } diff --git a/package-lock.json b/package-lock.json index 27991a1..83d054f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@microsoft/azure-iot-ux-fluent-controls", - "version": "7.0.2", + "version": "7.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 651dc10..670c42a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/azure-iot-ux-fluent-controls", - "version": "7.0.2", + "version": "7.0.3", "description": "Azure IoT UX Fluent Controls", "main": "./lib/index.js", "types": "./lib/index.d.ts",