bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/notifications-bar/meeting-remaining-time/styles.js

27 lines
492 B
JavaScript
Raw Normal View History

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,
};