Issue 2747 - fix unnecesary scroll
parent
07ed833e02
commit
5731843d3e
|
@ -1,6 +1,7 @@
|
|||
.navbar {
|
||||
background: rgba($black, .5);
|
||||
display: flex;
|
||||
height: $navbar;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
&:after {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.profile {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
min-height: $main-height;
|
||||
padding: 2rem 0;
|
||||
.profile-bar {
|
||||
margin-right: 1rem;
|
||||
|
|
|
@ -49,13 +49,13 @@ body {
|
|||
|
||||
.wrapper {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
min-height: $main-height;
|
||||
}
|
||||
|
||||
.menu-secondary {
|
||||
background: $whitish;
|
||||
flex: 0 0 auto;
|
||||
min-height: 100vh;
|
||||
min-height: $main-height;
|
||||
min-width: 0;
|
||||
padding: 1rem;
|
||||
width: 320px;
|
||||
|
@ -82,7 +82,7 @@ body {
|
|||
.menu-tertiary {
|
||||
background-color: $dark-taiga;
|
||||
flex: 0 0 auto;
|
||||
min-height: 100vh;
|
||||
min-height: $main-height;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
|
|
|
@ -81,3 +81,6 @@
|
|||
max-width: 1rem;
|
||||
transform-origin: 32 32;
|
||||
}
|
||||
|
||||
$navbar: 45px;
|
||||
$main-height: calc(100vh - 45px);
|
|
@ -1,8 +1,8 @@
|
|||
.kanban {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
height: $main-height;
|
||||
max-height: $main-height;
|
||||
header {
|
||||
min-height: 70px;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.taskboard {
|
||||
height: 100vh;
|
||||
height: $main-height;
|
||||
overflow: hidden;
|
||||
h1,
|
||||
.graphics-container,
|
||||
|
|
|
@ -4,7 +4,7 @@ tg-project-menu {
|
|||
background-color: $dark-taiga;
|
||||
background-image: url('../images/menu.png');
|
||||
background-position: 0 -300px;
|
||||
min-height: 100vh;
|
||||
min-height: $main-height;
|
||||
padding: 1rem 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue