Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3705 | Rev 3707 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3705 Rev 3706
Línea 1... Línea 1...
1
import { css } from '@emotion/react';
1
import { css } from '@emotion/react';
Línea 2... Línea 2...
2
 
2
 
Línea 3... Línea -...
3
import colors from '@styles/config/colors';
-
 
4
 
-
 
5
const allVariants = {
-
 
6
  margin: 0,
-
 
7
  fontFamily: ['Source Sans 3', 'sans-serif']
-
 
8
};
3
import colors from '@styles/config/colors';
Línea 9... Línea 4...
9
 
4
 
10
export const fontSize = 14;
5
export const fontSize = 14;
11
 
6
 
Línea 55... Línea 50...
55
  font-size: 0.875rem;
50
  font-size: 0.875rem;
56
  color: ${colors.font.primary};
51
  color: ${colors.font.primary};
57
`;
52
`;
Línea 58... Línea 53...
58
 
53
 
59
export const typography = {
-
 
60
  allVariants,
54
export const typography = {
61
  fontSize,
55
  fontSize,
62
  h1,
56
  h1,
63
  h2,
57
  h2,
64
  h3,
58
  h3,
65
  h4,
59
  h4,
66
  body1,
60
  body1,
67
  body2,
61
  body2,
68
  overline
62
  overline
-
 
63
};
-
 
64
 
-
 
65
export const typographyStyles = {
-
 
66
  root: {
-
 
67
    margin: 0,
-
 
68
    fontFamily: ['Source Sans 3', 'sans-serif']
-
 
69
  }