The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/Message/helpers/followSyle.js

12 lines
249 B

import { css } from '@rocket.chat/css-in-js';
export const anchor = 'rcx-contextual-message__follow';
export const followStyle = css`
& .${anchor} {
opacity: 0;
}
.${anchor}:focus, &:hover .${anchor}, &:focus .${anchor} {
opacity: 1;
}
`;