bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-test/styles.js
2022-02-14 20:20:50 +00:00

35 lines
696 B
JavaScript

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import { colorPrimary } from '/imports/ui/stylesheets/styled-components/palette';
const TestAudioButton = styled(Button)`
margin: 0 !important;
background-color: transparent;
color: ${colorPrimary};
font-weight: normal;
border: none;
i {
color: ${colorPrimary};
${({ animations }) => animations && `
transition: all .2s ease-in-out;
`}
}
&:hover,
&:focus,
&:active {
border: none;
background-color: transparent !important;
color: #0c5cb2 !important;
i {
color: #0c5cb2;
}
}
`;
export default {
TestAudioButton,
};