bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/notifications-bar/meeting-remaining-time/styles.js
2023-02-16 14:52:23 +01:00

27 lines
492 B
JavaScript

import styled from 'styled-components';
import {
colorGray,
} from '/imports/ui/stylesheets/styled-components/palette';
import {
fontSizeSmaller,
fontSizeXL,
} from '/imports/ui/stylesheets/styled-components/typography';
const Text = styled.span`
text-transform: uppercase;
color: ${colorGray};
font-size: ${fontSizeSmaller};
font-weight: 600;
`;
const Time = styled.span`
font-size: ${fontSizeXL};
font-weight: 600;
color: ${colorGray};
`;
export {
Text,
Time,
};