blob: 98c202b901b6e98fce1130248cc0bec34d0906fd (
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 '../lib/foundations';
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',
});
|