@selfcommunity/react-theme-default 0.4.2-courses.136 → 0.4.2-courses.137

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.
@@ -3,6 +3,7 @@ declare const Component: {
3
3
  root: ({ theme }: any) => {
4
4
  display: string;
5
5
  flexDirection: string;
6
+ padding: any;
6
7
  '& .SCLessonObject-content': {
7
8
  padding: string;
8
9
  '& .SCLessonObject-text': {
@@ -33,8 +34,10 @@ declare const Component: {
33
34
  };
34
35
  };
35
36
  '& .SCWidget-root': {
37
+ [x: number]: {
38
+ boxShadow: string;
39
+ };
36
40
  marginBottom: any;
37
- boxShadow: string;
38
41
  };
39
42
  '& .SCLessonObject-button': {
40
43
  alignSelf: string;
@@ -5,6 +5,7 @@ const Component = {
5
5
  root: ({ theme }) => ({
6
6
  display: 'flex',
7
7
  flexDirection: 'column',
8
+ padding: theme.spacing(1),
8
9
  '& .SCLessonObject-content': {
9
10
  padding: `${theme.spacing(2)} !important`,
10
11
  '& .SCLessonObject-text': {
@@ -37,7 +38,9 @@ const Component = {
37
38
  },
38
39
  '& .SCWidget-root': {
39
40
  marginBottom: theme.spacing(3),
40
- boxShadow: '0px 0px 20px 0px rgba(0, 0, 0, 0.2)'
41
+ [theme.breakpoints.down('md')]: {
42
+ boxShadow: 'none'
43
+ }
41
44
  },
42
45
  '& .SCLessonObject-button': {
43
46
  alignSelf: 'center'
@@ -5543,6 +5543,7 @@ declare const theme: {
5543
5543
  root: ({ theme }: any) => {
5544
5544
  display: string;
5545
5545
  flexDirection: string;
5546
+ padding: any;
5546
5547
  '& .SCLessonObject-content': {
5547
5548
  padding: string;
5548
5549
  '& .SCLessonObject-text': {
@@ -5573,8 +5574,10 @@ declare const theme: {
5573
5574
  };
5574
5575
  };
5575
5576
  '& .SCWidget-root': {
5577
+ [x: number]: {
5578
+ boxShadow: string;
5579
+ };
5576
5580
  marginBottom: any;
5577
- boxShadow: string;
5578
5581
  };
5579
5582
  '& .SCLessonObject-button': {
5580
5583
  alignSelf: string;
@@ -3,6 +3,7 @@ declare const Component: {
3
3
  root: ({ theme }: any) => {
4
4
  display: string;
5
5
  flexDirection: string;
6
+ padding: any;
6
7
  '& .SCLessonObject-content': {
7
8
  padding: string;
8
9
  '& .SCLessonObject-text': {
@@ -33,8 +34,10 @@ declare const Component: {
33
34
  };
34
35
  };
35
36
  '& .SCWidget-root': {
37
+ [x: number]: {
38
+ boxShadow: string;
39
+ };
36
40
  marginBottom: any;
37
- boxShadow: string;
38
41
  };
39
42
  '& .SCLessonObject-button': {
40
43
  alignSelf: string;
@@ -3,6 +3,7 @@ const Component = {
3
3
  root: ({ theme }) => ({
4
4
  display: 'flex',
5
5
  flexDirection: 'column',
6
+ padding: theme.spacing(1),
6
7
  '& .SCLessonObject-content': {
7
8
  padding: `${theme.spacing(2)} !important`,
8
9
  '& .SCLessonObject-text': {
@@ -35,7 +36,9 @@ const Component = {
35
36
  },
36
37
  '& .SCWidget-root': {
37
38
  marginBottom: theme.spacing(3),
38
- boxShadow: '0px 0px 20px 0px rgba(0, 0, 0, 0.2)'
39
+ [theme.breakpoints.down('md')]: {
40
+ boxShadow: 'none'
41
+ }
39
42
  },
40
43
  '& .SCLessonObject-button': {
41
44
  alignSelf: 'center'
@@ -5543,6 +5543,7 @@ declare const theme: {
5543
5543
  root: ({ theme }: any) => {
5544
5544
  display: string;
5545
5545
  flexDirection: string;
5546
+ padding: any;
5546
5547
  '& .SCLessonObject-content': {
5547
5548
  padding: string;
5548
5549
  '& .SCLessonObject-text': {
@@ -5573,8 +5574,10 @@ declare const theme: {
5573
5574
  };
5574
5575
  };
5575
5576
  '& .SCWidget-root': {
5577
+ [x: number]: {
5578
+ boxShadow: string;
5579
+ };
5576
5580
  marginBottom: any;
5577
- boxShadow: string;
5578
5581
  };
5579
5582
  '& .SCLessonObject-button': {
5580
5583
  alignSelf: string;