2022-11-02 22:54:57 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import Button from '/imports/ui/components/common/button/component';
|
|
|
|
|
|
|
|
const QuickVideoButton = styled(Button)`
|
2023-07-31 22:24:25 +08:00
|
|
|
margin-left: .5rem;
|
|
|
|
|
2022-11-02 22:54:57 +08:00
|
|
|
i {
|
2023-07-31 22:24:25 +08:00
|
|
|
color: unset;
|
2022-11-02 22:54:57 +08:00
|
|
|
font-size: 1rem;
|
|
|
|
padding-left: 20%;
|
|
|
|
right: 2px;
|
|
|
|
|
|
|
|
[dir="rtl"] & {
|
|
|
|
-webkit-transform: scale(-1, 1);
|
|
|
|
-moz-transform: scale(-1, 1);
|
|
|
|
-ms-transform: scale(-1, 1);
|
|
|
|
-o-transform: scale(-1, 1);
|
|
|
|
transform: scale(-1, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
QuickVideoButton,
|
|
|
|
};
|