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

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.
@@ -1,9 +1,11 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ [x: number]: {
5
+ padding: any;
6
+ };
4
7
  display: string;
5
8
  flexDirection: string;
6
- padding: any;
7
9
  '& .SCLessonObject-content': {
8
10
  padding: string;
9
11
  '& .SCLessonObject-text': {
@@ -5,7 +5,9 @@ const Component = {
5
5
  root: ({ theme }) => ({
6
6
  display: 'flex',
7
7
  flexDirection: 'column',
8
- padding: theme.spacing(1),
8
+ [theme.breakpoints.up('sm')]: {
9
+ padding: theme.spacing(1)
10
+ },
9
11
  '& .SCLessonObject-content': {
10
12
  padding: `${theme.spacing(2)} !important`,
11
13
  '& .SCLessonObject-text': {
@@ -5541,9 +5541,11 @@ declare const theme: {
5541
5541
  SCLessonObject: {
5542
5542
  styleOverrides: {
5543
5543
  root: ({ theme }: any) => {
5544
+ [x: number]: {
5545
+ padding: any;
5546
+ };
5544
5547
  display: string;
5545
5548
  flexDirection: string;
5546
- padding: any;
5547
5549
  '& .SCLessonObject-content': {
5548
5550
  padding: string;
5549
5551
  '& .SCLessonObject-text': {
@@ -1,9 +1,11 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ [x: number]: {
5
+ padding: any;
6
+ };
4
7
  display: string;
5
8
  flexDirection: string;
6
- padding: any;
7
9
  '& .SCLessonObject-content': {
8
10
  padding: string;
9
11
  '& .SCLessonObject-text': {
@@ -3,7 +3,9 @@ const Component = {
3
3
  root: ({ theme }) => ({
4
4
  display: 'flex',
5
5
  flexDirection: 'column',
6
- padding: theme.spacing(1),
6
+ [theme.breakpoints.up('sm')]: {
7
+ padding: theme.spacing(1)
8
+ },
7
9
  '& .SCLessonObject-content': {
8
10
  padding: `${theme.spacing(2)} !important`,
9
11
  '& .SCLessonObject-text': {
@@ -5541,9 +5541,11 @@ declare const theme: {
5541
5541
  SCLessonObject: {
5542
5542
  styleOverrides: {
5543
5543
  root: ({ theme }: any) => {
5544
+ [x: number]: {
5545
+ padding: any;
5546
+ };
5544
5547
  display: string;
5545
5548
  flexDirection: string;
5546
- padding: any;
5547
5549
  '& .SCLessonObject-content': {
5548
5550
  padding: string;
5549
5551
  '& .SCLessonObject-text': {