diff --git a/changes/2107-sidebar-style b/changes/2107-sidebar-style new file mode 100644 index 0000000000..0a50d56a17 --- /dev/null +++ b/changes/2107-sidebar-style @@ -0,0 +1 @@ +- Fixed sidebar style \ No newline at end of file diff --git a/frontend/components/side_panels/SecondarySidePanelContainer/_styles.scss b/frontend/components/side_panels/SecondarySidePanelContainer/_styles.scss index 430d613e77..31d90c0979 100644 --- a/frontend/components/side_panels/SecondarySidePanelContainer/_styles.scss +++ b/frontend/components/side_panels/SecondarySidePanelContainer/_styles.scss @@ -1,9 +1,9 @@ .secondary-side-panel-container { - align-self: stretch; background-color: $core-white; box-sizing: border-box; border-left: 1px solid $ui-gray; overflow: auto; + min-width: $sidepanel-width; width: $sidepanel-width; padding: $pad-xxlarge; } diff --git a/frontend/styles/global/_global.scss b/frontend/styles/global/_global.scss index 586d4bb247..1e335648f7 100644 --- a/frontend/styles/global/_global.scss +++ b/frontend/styles/global/_global.scss @@ -55,11 +55,12 @@ a { border-radius: 3px; background-color: $core-white; border: solid 1px $core-white; - min-width: 910px; + min-width: 798px; } .has-sidebar { display: flex; + flex-grow: 1; & > *:first-child { flex-grow: 1; @@ -121,4 +122,4 @@ hr { margin-bottom: $pad-xlarge; border: none; border-bottom: 1px solid $ui-fleet-blue-15; -} \ No newline at end of file +}