bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/chat-graphql/chat-editing-warning/styles.ts
2024-10-17 09:03:33 -03:00

35 lines
684 B
TypeScript

import styled from 'styled-components';
import { colorGrayLight } from '/imports/ui/stylesheets/styled-components/palette';
import { xlPadding, xsPadding } from '/imports/ui/stylesheets/styled-components/general';
export const Root = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
color: ${colorGrayLight};
[dir='ltr'] & {
padding-right: ${xlPadding};
}
[dir='rtl'] & {
padding-left: ${xlPadding};
}
`;
export const Highlighted = styled.span`
font-weight: bold;
`;
export const Left = styled.span`
display: flex;
align-items: center;
gap: ${xsPadding};
`;
export default {
Root,
Left,
};