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

50 lines
877 B
JavaScript
Raw Normal View History

2021-11-10 00:20:34 +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:20:34 +08:00
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
2017-11-17 19:52:48 +08:00
2021-11-10 00:20:34 +08:00
const Help = styled.span`
2017-11-17 19:52:48 +08:00
display: flex;
flex-flow: column;
2021-11-10 00:20:34 +08:00
height: 10rem;
`;
2017-11-17 19:52:48 +08:00
2021-11-10 00:20:34 +08:00
const Text = styled.div`
2017-11-17 19:52:48 +08:00
text-align: center;
margin-top: auto;
margin-bottom: auto;
2021-11-10 00:20:34 +08:00
`;
const EnterAudio = styled.div`
margin-top: 1.5rem;
display: flex;
justify-content: flex-end;
`;
2017-11-17 19:52:48 +08:00
2021-11-10 00:20:34 +08:00
const BackButton = styled(Button)`
2017-11-17 19:52:48 +08:00
margin-right: 0.5rem;
margin-left: inherit;
2017-11-17 19:52:48 +08:00
border: none;
[dir="rtl"] & {
margin-right: inherit;
margin-left: 0.5rem;
}
2021-11-10 00:20:34 +08:00
@media ${smallOnly} {
margin-right: none;
margin-left: inherit;
[dir="rtl"] & {
margin-right: inherit;
margin-left: auto;
}
2017-11-17 19:52:48 +08:00
}
2021-11-10 00:20:34 +08:00
`;
export default {
Help,
Text,
EnterAudio,
BackButton,
};