Fix horizontal scrollbar due to status bar negative margin

This commit is contained in:
Keavon Chambers 2021-07-05 00:38:18 -07:00
parent 751fabb417
commit 8666ff4390
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@
.status-bar-row { .status-bar-row {
flex: 0 0 auto; flex: 0 0 auto;
// Prevents the creation of a scrollbar due to the child's negative margin
overflow: hidden;
} }
</style> </style>