1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-23 10:24:29 +01:00

fix minor design issue (#297)

This commit is contained in:
Nolan Lawson 2018-05-13 18:53:37 -07:00 committed by GitHub
parent 75d4f51c97
commit 8035662f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,8 +38,15 @@
justify-content: space-between;
}
.status-toolbar.status-in-own-thread {
margin-left: 58px;
margin-left: 63px; /* offset to align all toolbar items: 48px avatar + 15px margin-right */
}
@media (max-width: 767px) {
.status-toolbar.status-in-own-thread {
margin-left: 53px; /* offset to align all toolbar items: 48px avatar + 5px margin-right */
}
}
</style>
<script>
import IconButton from '../IconButton.html'