mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
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>
25 lines
397 B
CSS
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;
|
|
}
|
|
}
|