styles: Use pipe character as separator in navbar.

The previous implementation had a weird bug where for some streams, the 1px wide
before and ::after elements would appear to have different widths. See conversation:

https://chat.zulip.org/#narrow/stream/101-design/topic/navbar.20redesign/near/873312
This commit is contained in:
Rohitt Vashishtha 2020-05-11 13:19:42 +05:30 committed by Tim Abbott
parent 032361c66d
commit cf2fafa537

View File

@ -1495,12 +1495,12 @@ div.focused_table {
&::before,
&::after {
content: "";
content: "|";
position: absolute;
top: 25%;
width: 1px;
height: 50%;
background: hsl(0, 0%, 88%);
color: hsl(0, 0%, 88%);
font-size: 20px;
@media (max-width: 500px) {
top: 10%;
}