summaryrefslogtreecommitdiff
path: root/src/screens/student/Classroom/AnnouncementsTab/styles.js
blob: d7d218a91d2d49b347ce46ad92b9eafa90d630a8 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// ========== Desktop ==========
const desktopContainer = {
  width: '100%',
  height: '100vh',
  backgroundColor: '#red',
  padding: 0,
  margin: 0,
  marginTop: '50px',
};

const desktopEmptyStateContainer = {
  display: 'flex',
  justifyContent: 'center',
  marginTop: '30px',
};

const desktop = {
  container: desktopContainer,
  emptyStateContainer: desktopEmptyStateContainer,
};

// ========== Mobile ==========
const mobileContainer = {
  width: '90%',
  backgroundColor: '#red',
  padding: 0,
  marginTop: '30px',
  paddingBottom: '100px',
};

const mobileEmptyStateContainer = {
  display: 'flex',
  justifyContent: 'center',
  marginTop: '30px',
};

const mobile = {
  container: mobileContainer,
  emptyStateContainer: mobileEmptyStateContainer,
};

// ========== Unset ==========
const unset = {
  container: null,
};

const styles = { desktop, mobile, unset };
export default styles;