summaryrefslogtreecommitdiff
path: root/src/components/AnnouncementCard/styles.js
blob: 5aff91b89a1f29c2bbf52e32194fc953d0cb4689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const cardContainer = {
  width: '100%',
  padding: '20px',
};

const typographyName = {
  fontWeight: 400,
};

const typographyCreatedAt = {
  fontWeight: 400,
  fontSize: '12px',
};

const textContainer = {
  marginTop: '20px',
};

const styles = {
  cardContainer,
  typographyName,
  typographyCreatedAt,
  textContainer,
};

export { styles };