3a531b0532
* move raise hand out of reactions bar * adjust reactions bar border-radius * adjust button background + remove custom icon * fixing raise hand test * skipping raise hand test * fixed learning dashboaard test, flaky to notification test --------- Co-authored-by: Gabriel Porfirio <gabrielporfirio1994@gmail.com>
18 lines
436 B
JavaScript
18 lines
436 B
JavaScript
import styled from 'styled-components';
|
|
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
|
|
import Button from '/imports/ui/components/common/button/component';
|
|
|
|
const RaiseHandButton = styled(Button)`
|
|
${({ ghost }) => ghost && `
|
|
& > span {
|
|
box-shadow: none;
|
|
background-color: transparent !important;
|
|
border-color: ${colorWhite} !important;
|
|
}
|
|
`}
|
|
`;
|
|
|
|
export default {
|
|
RaiseHandButton,
|
|
};
|