Merge branch '904-breakpoint-sidebar' into 'develop'
Fix #904: Fixed a responsive display issues on 1024px wide screens Closes #904 See merge request funkwhale/funkwhale!890
This commit is contained in:
commit
3a9f2cde37
|
@ -0,0 +1 @@
|
||||||
|
Fixed a responsive display issues on 1024px wide screens (#904)
|
|
@ -342,7 +342,7 @@ $sidebar-color: #3d3e3f;
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@include media("<desktop") {
|
@include media("<=desktop") {
|
||||||
position: static !important;
|
position: static !important;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
&.collapsed {
|
&.collapsed {
|
||||||
|
@ -397,7 +397,7 @@ $sidebar-color: #3d3e3f;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@include media("<desktop") {
|
@include media("<=desktop") {
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,7 +84,7 @@ $widedesktop-sidebar-width: 350px;
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
@include media("<desktop") {
|
@include media("<=desktop") {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue