1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-07 15:28:42 +01:00

Merge pull request #709 from amyspark/fix-header-width

Fix timeline header width when account sidebar is collapsed
This commit is contained in:
AkiraFukushima 2018-11-16 10:08:22 +09:00 committed by GitHub
commit cd0724a12e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>