[Canvas] Fixes Workpad fullscreen due to max-width limitation (#47371) (#47576)

* Allow row to extend past viewport width to allow proper fullscreen canvas view

* Added note
This commit is contained in:
Poff Poffenberger 2019-10-08 12:57:28 -05:00 committed by GitHub
parent a92e64f62f
commit 8ce586ff8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,11 @@ body.canvas-isFullscreen { // sass-lint:disable-line no-qualifying-elements
}
}
.canvasLayout__rows {
// this is critical for the row to expand outside of the viewport for proper fullscreen sizing
max-width: none;
}
.canvasLayout__rows,
.canvasLayout__cols {
align-items: center;