@selfcommunity/react-theme-default 0.4.2-courses.180 → 0.4.2-courses.182

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,9 @@ declare const Component: {
8
8
  backgroundColor: any;
9
9
  };
10
10
  };
11
+ '& .MuiButtonBase-root': {
12
+ paddingLeft: any;
13
+ };
11
14
  };
12
15
  '& .SCCourseContentMenu-list-item': {
13
16
  '&:hover, &:focus, &:active': {
@@ -19,7 +22,6 @@ declare const Component: {
19
22
  color: any;
20
23
  };
21
24
  '& .SCCourseContentMenu-item': {
22
- padding: any;
23
25
  '& .MuiListItemText-primary': {
24
26
  fontWeight: any;
25
27
  };
@@ -9,6 +9,9 @@ const Component = {
9
9
  '&:hover, &:focus, &:active': {
10
10
  backgroundColor: theme.palette.grey[300]
11
11
  }
12
+ },
13
+ '& .MuiButtonBase-root': {
14
+ paddingLeft: theme.spacing(5)
12
15
  }
13
16
  },
14
17
  '& .SCCourseContentMenu-list-item': {
@@ -21,7 +24,6 @@ const Component = {
21
24
  color: theme.palette.text.secondary
22
25
  },
23
26
  '& .SCCourseContentMenu-item': {
24
- padding: theme.spacing(0.5, 0, 0.5, 3),
25
27
  '& .MuiListItemText-primary': {
26
28
  fontWeight: theme.typography.fontWeightMedium
27
29
  },
@@ -42,6 +42,7 @@ declare const Component: {
42
42
  skeletonRoot: ({ theme }: any) => {
43
43
  width: string;
44
44
  backgroundColor: string;
45
+ padding: any;
45
46
  };
46
47
  };
47
48
  };
@@ -43,7 +43,8 @@ const Component = {
43
43
  }),
44
44
  skeletonRoot: ({ theme }) => ({
45
45
  width: '100%',
46
- backgroundColor: 'transparent'
46
+ backgroundColor: 'transparent',
47
+ padding: theme.spacing(2, 0, 0, 2)
47
48
  })
48
49
  }
49
50
  };
@@ -8,6 +8,11 @@ declare const Component: {
8
8
  justifyContent: string;
9
9
  marginBottom: any;
10
10
  };
11
+ '& .SCLessonTemplate-preview-info': {
12
+ justifyContent: string;
13
+ borderRadius: number;
14
+ marginBottom: any;
15
+ };
11
16
  '& .SCLessonTemplate-button': {
12
17
  alignSelf: string;
13
18
  marginTop: string;
@@ -16,6 +16,10 @@ const Component = {
16
16
  alignItems: 'center',
17
17
  justifyContent: 'space-between',
18
18
  marginBottom: theme.spacing(1)
19
+ }, '& .SCLessonTemplate-preview-info': {
20
+ justifyContent: 'center',
21
+ borderRadius: 5,
22
+ marginBottom: theme.spacing(1)
19
23
  }, '& .SCLessonTemplate-button': {
20
24
  alignSelf: 'center',
21
25
  marginTop: 'auto'
@@ -2014,6 +2014,9 @@ declare const theme: {
2014
2014
  backgroundColor: any;
2015
2015
  };
2016
2016
  };
2017
+ '& .MuiButtonBase-root': {
2018
+ paddingLeft: any;
2019
+ };
2017
2020
  };
2018
2021
  '& .SCCourseContentMenu-list-item': {
2019
2022
  '&:hover, &:focus, &:active': {
@@ -2025,7 +2028,6 @@ declare const theme: {
2025
2028
  color: any;
2026
2029
  };
2027
2030
  '& .SCCourseContentMenu-item': {
2028
- padding: any;
2029
2031
  '& .MuiListItemText-primary': {
2030
2032
  fontWeight: any;
2031
2033
  };
@@ -5554,6 +5556,7 @@ declare const theme: {
5554
5556
  skeletonRoot: ({ theme }: any) => {
5555
5557
  width: string;
5556
5558
  backgroundColor: string;
5559
+ padding: any;
5557
5560
  };
5558
5561
  };
5559
5562
  };
@@ -5649,6 +5652,11 @@ declare const theme: {
5649
5652
  justifyContent: string;
5650
5653
  marginBottom: any;
5651
5654
  };
5655
+ '& .SCLessonTemplate-preview-info': {
5656
+ justifyContent: string;
5657
+ borderRadius: number;
5658
+ marginBottom: any;
5659
+ };
5652
5660
  '& .SCLessonTemplate-button': {
5653
5661
  alignSelf: string;
5654
5662
  marginTop: string;
@@ -8,6 +8,9 @@ declare const Component: {
8
8
  backgroundColor: any;
9
9
  };
10
10
  };
11
+ '& .MuiButtonBase-root': {
12
+ paddingLeft: any;
13
+ };
11
14
  };
12
15
  '& .SCCourseContentMenu-list-item': {
13
16
  '&:hover, &:focus, &:active': {
@@ -19,7 +22,6 @@ declare const Component: {
19
22
  color: any;
20
23
  };
21
24
  '& .SCCourseContentMenu-item': {
22
- padding: any;
23
25
  '& .MuiListItemText-primary': {
24
26
  fontWeight: any;
25
27
  };
@@ -7,6 +7,9 @@ const Component = {
7
7
  '&:hover, &:focus, &:active': {
8
8
  backgroundColor: theme.palette.grey[300]
9
9
  }
10
+ },
11
+ '& .MuiButtonBase-root': {
12
+ paddingLeft: theme.spacing(5)
10
13
  }
11
14
  },
12
15
  '& .SCCourseContentMenu-list-item': {
@@ -19,7 +22,6 @@ const Component = {
19
22
  color: theme.palette.text.secondary
20
23
  },
21
24
  '& .SCCourseContentMenu-item': {
22
- padding: theme.spacing(0.5, 0, 0.5, 3),
23
25
  '& .MuiListItemText-primary': {
24
26
  fontWeight: theme.typography.fontWeightMedium
25
27
  },
@@ -42,6 +42,7 @@ declare const Component: {
42
42
  skeletonRoot: ({ theme }: any) => {
43
43
  width: string;
44
44
  backgroundColor: string;
45
+ padding: any;
45
46
  };
46
47
  };
47
48
  };
@@ -41,7 +41,8 @@ const Component = {
41
41
  }),
42
42
  skeletonRoot: ({ theme }) => ({
43
43
  width: '100%',
44
- backgroundColor: 'transparent'
44
+ backgroundColor: 'transparent',
45
+ padding: theme.spacing(2, 0, 0, 2)
45
46
  })
46
47
  }
47
48
  };
@@ -8,6 +8,11 @@ declare const Component: {
8
8
  justifyContent: string;
9
9
  marginBottom: any;
10
10
  };
11
+ '& .SCLessonTemplate-preview-info': {
12
+ justifyContent: string;
13
+ borderRadius: number;
14
+ marginBottom: any;
15
+ };
11
16
  '& .SCLessonTemplate-button': {
12
17
  alignSelf: string;
13
18
  marginTop: string;
@@ -14,6 +14,10 @@ const Component = {
14
14
  alignItems: 'center',
15
15
  justifyContent: 'space-between',
16
16
  marginBottom: theme.spacing(1)
17
+ }, '& .SCLessonTemplate-preview-info': {
18
+ justifyContent: 'center',
19
+ borderRadius: 5,
20
+ marginBottom: theme.spacing(1)
17
21
  }, '& .SCLessonTemplate-button': {
18
22
  alignSelf: 'center',
19
23
  marginTop: 'auto'
@@ -2014,6 +2014,9 @@ declare const theme: {
2014
2014
  backgroundColor: any;
2015
2015
  };
2016
2016
  };
2017
+ '& .MuiButtonBase-root': {
2018
+ paddingLeft: any;
2019
+ };
2017
2020
  };
2018
2021
  '& .SCCourseContentMenu-list-item': {
2019
2022
  '&:hover, &:focus, &:active': {
@@ -2025,7 +2028,6 @@ declare const theme: {
2025
2028
  color: any;
2026
2029
  };
2027
2030
  '& .SCCourseContentMenu-item': {
2028
- padding: any;
2029
2031
  '& .MuiListItemText-primary': {
2030
2032
  fontWeight: any;
2031
2033
  };
@@ -5554,6 +5556,7 @@ declare const theme: {
5554
5556
  skeletonRoot: ({ theme }: any) => {
5555
5557
  width: string;
5556
5558
  backgroundColor: string;
5559
+ padding: any;
5557
5560
  };
5558
5561
  };
5559
5562
  };
@@ -5649,6 +5652,11 @@ declare const theme: {
5649
5652
  justifyContent: string;
5650
5653
  marginBottom: any;
5651
5654
  };
5655
+ '& .SCLessonTemplate-preview-info': {
5656
+ justifyContent: string;
5657
+ borderRadius: number;
5658
+ marginBottom: any;
5659
+ };
5652
5660
  '& .SCLessonTemplate-button': {
5653
5661
  alignSelf: string;
5654
5662
  marginTop: string;