2021-11-10 00:20:34 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import Button from '/imports/ui/components/button/component';
|
|
|
|
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;
|
2019-05-14 21:15:54 +08:00
|
|
|
margin-left: inherit;
|
2017-11-17 19:52:48 +08:00
|
|
|
border: none;
|
|
|
|
|
2019-05-14 21:15:54 +08:00
|
|
|
[dir="rtl"] & {
|
|
|
|
margin-right: inherit;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2021-11-10 00:20:34 +08:00
|
|
|
@media ${smallOnly} {
|
2019-10-23 03:32:04 +08:00
|
|
|
margin-right: none;
|
2019-05-14 21:15:54 +08:00
|
|
|
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,
|
|
|
|
};
|