Fix timeline header width w/collapsed acct sidebar

This commit is contained in:
L. E. Segovia 2018-11-14 22:57:12 +00:00
parent 110154ddaa
commit cc72550812
No known key found for this signature in database
GPG Key ID: D5D1DC48B52B7AD5
1 changed files with 7 additions and 1 deletions

View File

@ -185,7 +185,7 @@ export default {
box-sizing: border-box;
.header {
width: calc(100% - 141px);
width: calc(100% - 64px);
position: fixed;
top: 0;
height: 48px;
@ -193,4 +193,10 @@ export default {
}
}
.with-global-header {
.page-narrow .header{
width: calc(100% - 65px - 64px);
}
}
</style>