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';
|
2018-10-19 04:37:14 +08:00
|
|
|
|
2021-11-10 00:11:19 +08:00
|
|
|
const EchoTest = styled.span`
|
2018-10-19 04:37:14 +08:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
2021-11-10 00:11:19 +08:00
|
|
|
`;
|
2018-10-19 04:37:14 +08:00
|
|
|
|
2021-11-10 00:11:19 +08:00
|
|
|
const EchoTestButton = styled(Button)`
|
2018-10-19 04:37:14 +08:00
|
|
|
&:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
2019-05-14 21:15:54 +08:00
|
|
|
margin: 0 3rem 0 0;
|
|
|
|
|
|
|
|
[dir="rtl"] & {
|
|
|
|
margin: 0 0 0 3rem;
|
|
|
|
}
|
2018-10-19 04:37:14 +08:00
|
|
|
|
2021-11-10 00:11:19 +08:00
|
|
|
@media ${smallOnly} {
|
2019-05-14 21:15:54 +08:00
|
|
|
margin: 0 1rem 0 0;
|
|
|
|
|
|
|
|
[dir="rtl"] & {
|
|
|
|
margin: 0 0 0 1rem;
|
|
|
|
}
|
2018-10-19 04:37:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
span:last-child {
|
|
|
|
color: black;
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2021-11-10 00:11:19 +08:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
EchoTest,
|
|
|
|
EchoTestButton,
|
|
|
|
};
|