@selfcommunity/react-theme-default 0.4.2-courses.121 → 0.4.2-courses.122

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,6 +1,9 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ [x: number]: {
5
+ paddingBottom: any;
6
+ };
4
7
  padding: any;
5
8
  height: string;
6
9
  display: string;
@@ -4,6 +4,9 @@ const Component = {
4
4
  styleOverrides: {
5
5
  root: ({ theme }) => ({
6
6
  padding: theme.spacing(2),
7
+ [theme.breakpoints.up('sm')]: {
8
+ paddingBottom: theme.spacing(5)
9
+ },
7
10
  height: '100%',
8
11
  display: 'flex',
9
12
  flexDirection: 'column',
@@ -5425,6 +5425,9 @@ declare const theme: {
5425
5425
  SCLessonEditForm: {
5426
5426
  styleOverrides: {
5427
5427
  root: ({ theme }: any) => {
5428
+ [x: number]: {
5429
+ paddingBottom: any;
5430
+ };
5428
5431
  padding: any;
5429
5432
  height: string;
5430
5433
  display: string;
@@ -1,6 +1,9 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ [x: number]: {
5
+ paddingBottom: any;
6
+ };
4
7
  padding: any;
5
8
  height: string;
6
9
  display: string;
@@ -2,6 +2,9 @@ const Component = {
2
2
  styleOverrides: {
3
3
  root: ({ theme }) => ({
4
4
  padding: theme.spacing(2),
5
+ [theme.breakpoints.up('sm')]: {
6
+ paddingBottom: theme.spacing(5)
7
+ },
5
8
  height: '100%',
6
9
  display: 'flex',
7
10
  flexDirection: 'column',
@@ -5425,6 +5425,9 @@ declare const theme: {
5425
5425
  SCLessonEditForm: {
5426
5426
  styleOverrides: {
5427
5427
  root: ({ theme }: any) => {
5428
+ [x: number]: {
5429
+ paddingBottom: any;
5430
+ };
5428
5431
  padding: any;
5429
5432
  height: string;
5430
5433
  display: string;