spectators: Use display: inherit for only-visible-to-spectators.

The previous `display: unset` logic didn't work with dividers in the
gear menu. This new version should be correct -- what we want to do
here is just override the `display: none` default for this class, not
revert to the default browser styling for that element type.
This commit is contained in:
Tim Abbott 2022-03-01 11:44:02 -08:00
parent 7e365f7ee3
commit c710d18ec5
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ div.overlay {
}
.only-visible-for-spectators {
display: unset;
display: inherit;
}
}