mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Fixed header display on fullscreen
This commit is contained in:
@@ -3,12 +3,37 @@
|
||||
.app-header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 96%;
|
||||
width: 98%;
|
||||
background-color: white;
|
||||
height: 104px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1275px) {
|
||||
.app-header {
|
||||
width: 98%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1105px) {
|
||||
.app-header {
|
||||
width: 97%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 827px) {
|
||||
.app-header {
|
||||
width: 96%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 461px) {
|
||||
.app-header {
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.three-col-grid-container {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto;
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
}
|
||||
|
||||
.process-grid-container {
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
white-space: nowrap;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user