blob: 55059e223f3194d6fae9f771579fa2317962a565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import styled from 'styled-components';
import { colors } from '../../config.json';
export default styled.span({
display: 'inline-block',
fontFamily: 'Open Sans',
color: colors.blue,
fontSize: '12px',
fontWeight: 800,
lineHeight: '20px',
padding: '1px 8px',
marginLeft: '8px',
background: colors.yellow,
borderRadius: '5px',
textAlign: 'center',
verticalAlign: 'middle',
});
|