Skip to content
Snippets Groups Projects
Commit 222ef3d7 authored by Thomas Hackl's avatar Thomas Hackl
Browse files

Resolve "Kopfzeile und Hilfe/Fullscreen-Icon scrollen nach rechts aus dem Anzeigebereich heraus"

Closes #2061

Merge request studip/studip!1379
parent d27218e2
No related branches found
No related tags found
1 merge request!4Draft: Icon creation
...@@ -26,7 +26,7 @@ body { ...@@ -26,7 +26,7 @@ body {
display: grid; display: grid;
grid-column-gap: 5px; grid-column-gap: 5px;
grid-row-gap: $grid-gap; grid-row-gap: $grid-gap;
grid-template-columns: ($sidebar-width + $sidebar-padding) 1fr; grid-template-columns: ($sidebar-width + $sidebar-padding) minmax(auto, calc(100vw - $sidebar-width - $sidebar-padding));
grid-template-rows: auto 1fr $footer-height; grid-template-rows: auto 1fr $footer-height;
&::backdrop { &::backdrop {
...@@ -56,11 +56,6 @@ body { ...@@ -56,11 +56,6 @@ body {
min-width: $site-width; min-width: $site-width;
width: 100%; width: 100%;
> ul {
flex: 0 0 auto;
height: 55px;
}
#top-logo { #top-logo {
flex: 0 1 auto; flex: 0 1 auto;
margin-right: 12px; margin-right: 12px;
...@@ -68,6 +63,11 @@ body { ...@@ -68,6 +63,11 @@ body {
} }
} }
#navigation-level-1-items {
flex: 1;
height: 55px;
}
/* --- Layouts -------------------------------------------------------------- */ /* --- Layouts -------------------------------------------------------------- */
#current-page-structure { #current-page-structure {
background-color: #fff; background-color: #fff;
...@@ -161,6 +161,7 @@ body { ...@@ -161,6 +161,7 @@ body {
grid-row: 2 / 3; grid-row: 2 / 3;
justify-content: flex-start; justify-content: flex-start;
margin: $page-margin; margin: $page-margin;
overflow-x: auto;
position: relative; position: relative;
vertical-align: top; vertical-align: top;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment