Files
zulip/web/styles/typing_notifications.css
Anders Kaseorg d274583d8f styles: Use modern color notation.
postcss-preset-env transpiles this back as necessary.  (It does a
better job than we did, in fact: we had several four-argument hsl()
calls that should have been hsla().)

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-03-24 17:26:55 -07:00

25 lines
397 B
CSS

#typing_notifications {
display: none;
margin-left: 10px;
font-style: italic;
color: hsl(0deg 0% 53%);
}
#typing_notification_list {
list-style: none;
margin: 0;
}
@media (width < $xl_min) {
#typing_notifications {
margin-right: 7px;
}
}
@media (width < $md_min) {
#typing_notifications {
margin-right: 7px;
margin-left: 7px;
}
}