bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/echo-test/styles.js

42 lines
713 B
JavaScript
Raw Normal View History

2021-11-10 00:11:19 +08:00
import styled from 'styled-components';
2022-02-15 04:20:50 +08:00
import Button from '/imports/ui/components/common/button/component';
2021-11-10 00:11:19 +08:00
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
2021-11-10 00:11:19 +08:00
const EchoTest = styled.span`
margin-top: auto;
margin-bottom: auto;
2021-11-10 00:11:19 +08:00
`;
2021-11-10 00:11:19 +08:00
const EchoTestButton = styled(Button)`
&:focus {
outline: none !important;
}
&:first-child {
margin: 0 3rem 0 0;
[dir="rtl"] & {
margin: 0 0 0 3rem;
}
2021-11-10 00:11:19 +08:00
@media ${smallOnly} {
margin: 0 1rem 0 0;
[dir="rtl"] & {
margin: 0 0 0 1rem;
}
}
}
span:last-child {
color: black;
font-size: 1rem;
font-weight: 600;
}
2021-11-10 00:11:19 +08:00
`;
export default {
EchoTest,
EchoTestButton,
};