35 lines
684 B
TypeScript
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,
|
|
};
|