bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/styles.js

84 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-10-25 21:29:29 +08:00
import styled from 'styled-components';
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
import { smPaddingX, smPaddingY } from '/imports/ui/stylesheets/styled-components/general';
const ActionsBar = styled.div`
display: flex;
flex-direction: row;
2022-05-20 00:34:30 +08:00
align-items: center;
2021-10-25 21:29:29 +08:00
`;
const Left = styled.div`
display: inherit;
flex: 0;
> * {
margin: 0 ${smPaddingX};
@media ${smallOnly} {
margin: 0 ${smPaddingY};
}
}
@media ${smallOnly} {
bottom: ${smPaddingX};
left: ${smPaddingX};
right: auto;
[dir="rtl"] & {
left: auto;
right: ${smPaddingX};
}
}
`;
const Center = styled.div`
display: flex;
flex-direction: row;
flex: 1;
justify-content: center;
> * {
margin: 0 ${smPaddingX};
@media ${smallOnly} {
margin: 0 ${smPaddingY};
}
}
`;
const Right = styled.div`
display: flex;
flex-direction: row;
justify-content: center;
position: relative;
[dir="rtl"] & {
right: auto;
left: ${smPaddingX};
}
@media ${smallOnly} {
right: 0;
left: 0;
display: contents;
}
> * {
margin: 0 ${smPaddingX};
@media ${smallOnly} {
margin: 0 ${smPaddingY};
}
}
`;
export default {
ActionsBar,
Left,
Center,
Right,
2021-10-25 22:15:16 +08:00
};