@selfcommunity/react-theme-default 0.4.5-alpha.14 → 0.4.5-alpha.16

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.
@@ -13,6 +13,13 @@ declare const Component: {
13
13
  minWidth: string;
14
14
  };
15
15
  };
16
+ '& .SCLiveStreamForm-warning': {
17
+ margin: any;
18
+ "& a": {
19
+ color: any;
20
+ fontWeight: string;
21
+ };
22
+ };
16
23
  "& .SCLiveStreamForm-access-view": {
17
24
  margin: any;
18
25
  };
@@ -15,8 +15,15 @@ const Component = {
15
15
  minWidth: 'auto'
16
16
  }
17
17
  },
18
- [`& .SCLiveStreamForm-access-view`]: {
18
+ '& .SCLiveStreamForm-warning': {
19
19
  margin: theme.spacing(2, 0),
20
+ [`& a`]: {
21
+ color: theme.palette.common.white,
22
+ fontWeight: 'bold'
23
+ }
24
+ },
25
+ [`& .SCLiveStreamForm-access-view`]: {
26
+ margin: theme.spacing(2, 0)
20
27
  },
21
28
  [`& .SCLiveStreamForm-actions`]: {
22
29
  display: 'flex',
@@ -103,7 +103,14 @@ declare const Component: {
103
103
  alignItems: string;
104
104
  alignContent: string;
105
105
  flexDirection: string;
106
- "& .SCLiveStreamVideoConference-btn-back-home": {
106
+ "& .SCLiveStreamRoom-logo": {
107
+ img: {
108
+ maxHeight: number;
109
+ maxWidth: number;
110
+ };
111
+ marginBottom: any;
112
+ };
113
+ "& .SCLiveStreamRoom-btn-back-home": {
107
114
  marginTop: any;
108
115
  };
109
116
  };
@@ -105,7 +105,14 @@ const Component = {
105
105
  alignItems: 'center',
106
106
  alignContent: 'center',
107
107
  flexDirection: 'column',
108
- [`& .SCLiveStreamVideoConference-btn-back-home`]: {
108
+ [`& .SCLiveStreamRoom-logo`]: {
109
+ img: {
110
+ maxHeight: 60,
111
+ maxWidth: 300
112
+ },
113
+ marginBottom: theme.spacing(2)
114
+ },
115
+ [`& .SCLiveStreamRoom-btn-back-home`]: {
109
116
  marginTop: theme.spacing(2)
110
117
  }
111
118
  }
@@ -15,7 +15,8 @@ declare const Component: {
15
15
  textAlign: string;
16
16
  "& .SCLiveStreamVideoConference-logo": {
17
17
  img: {
18
- maxHeight: string;
18
+ maxHeight: number;
19
+ maxWidth: number;
19
20
  };
20
21
  marginBottom: any;
21
22
  };
@@ -17,7 +17,8 @@ const Component = {
17
17
  textAlign: 'center',
18
18
  [`& .SCLiveStreamVideoConference-logo`]: {
19
19
  img: {
20
- maxHeight: '100px'
20
+ maxHeight: 70,
21
+ maxWidth: 300
21
22
  },
22
23
  marginBottom: theme.spacing(2)
23
24
  },
@@ -9058,6 +9058,13 @@ declare const theme: {
9058
9058
  minWidth: string;
9059
9059
  };
9060
9060
  };
9061
+ '& .SCLiveStreamForm-warning': {
9062
+ margin: any;
9063
+ "& a": {
9064
+ color: any;
9065
+ fontWeight: string;
9066
+ };
9067
+ };
9061
9068
  "& .SCLiveStreamForm-access-view": {
9062
9069
  margin: any;
9063
9070
  };
@@ -9188,7 +9195,14 @@ declare const theme: {
9188
9195
  alignItems: string;
9189
9196
  alignContent: string;
9190
9197
  flexDirection: string;
9191
- "& .SCLiveStreamVideoConference-btn-back-home": {
9198
+ "& .SCLiveStreamRoom-logo": {
9199
+ img: {
9200
+ maxHeight: number;
9201
+ maxWidth: number;
9202
+ };
9203
+ marginBottom: any;
9204
+ };
9205
+ "& .SCLiveStreamRoom-btn-back-home": {
9192
9206
  marginTop: any;
9193
9207
  };
9194
9208
  };
@@ -9212,7 +9226,8 @@ declare const theme: {
9212
9226
  textAlign: string;
9213
9227
  "& .SCLiveStreamVideoConference-logo": {
9214
9228
  img: {
9215
- maxHeight: string;
9229
+ maxHeight: number;
9230
+ maxWidth: number;
9216
9231
  };
9217
9232
  marginBottom: any;
9218
9233
  };
@@ -13,6 +13,13 @@ declare const Component: {
13
13
  minWidth: string;
14
14
  };
15
15
  };
16
+ '& .SCLiveStreamForm-warning': {
17
+ margin: any;
18
+ "& a": {
19
+ color: any;
20
+ fontWeight: string;
21
+ };
22
+ };
16
23
  "& .SCLiveStreamForm-access-view": {
17
24
  margin: any;
18
25
  };
@@ -13,8 +13,15 @@ const Component = {
13
13
  minWidth: 'auto'
14
14
  }
15
15
  },
16
- [`& .SCLiveStreamForm-access-view`]: {
16
+ '& .SCLiveStreamForm-warning': {
17
17
  margin: theme.spacing(2, 0),
18
+ [`& a`]: {
19
+ color: theme.palette.common.white,
20
+ fontWeight: 'bold'
21
+ }
22
+ },
23
+ [`& .SCLiveStreamForm-access-view`]: {
24
+ margin: theme.spacing(2, 0)
18
25
  },
19
26
  [`& .SCLiveStreamForm-actions`]: {
20
27
  display: 'flex',
@@ -103,7 +103,14 @@ declare const Component: {
103
103
  alignItems: string;
104
104
  alignContent: string;
105
105
  flexDirection: string;
106
- "& .SCLiveStreamVideoConference-btn-back-home": {
106
+ "& .SCLiveStreamRoom-logo": {
107
+ img: {
108
+ maxHeight: number;
109
+ maxWidth: number;
110
+ };
111
+ marginBottom: any;
112
+ };
113
+ "& .SCLiveStreamRoom-btn-back-home": {
107
114
  marginTop: any;
108
115
  };
109
116
  };
@@ -103,7 +103,14 @@ const Component = {
103
103
  alignItems: 'center',
104
104
  alignContent: 'center',
105
105
  flexDirection: 'column',
106
- [`& .SCLiveStreamVideoConference-btn-back-home`]: {
106
+ [`& .SCLiveStreamRoom-logo`]: {
107
+ img: {
108
+ maxHeight: 60,
109
+ maxWidth: 300
110
+ },
111
+ marginBottom: theme.spacing(2)
112
+ },
113
+ [`& .SCLiveStreamRoom-btn-back-home`]: {
107
114
  marginTop: theme.spacing(2)
108
115
  }
109
116
  }
@@ -15,7 +15,8 @@ declare const Component: {
15
15
  textAlign: string;
16
16
  "& .SCLiveStreamVideoConference-logo": {
17
17
  img: {
18
- maxHeight: string;
18
+ maxHeight: number;
19
+ maxWidth: number;
19
20
  };
20
21
  marginBottom: any;
21
22
  };
@@ -15,7 +15,8 @@ const Component = {
15
15
  textAlign: 'center',
16
16
  [`& .SCLiveStreamVideoConference-logo`]: {
17
17
  img: {
18
- maxHeight: '100px'
18
+ maxHeight: 70,
19
+ maxWidth: 300
19
20
  },
20
21
  marginBottom: theme.spacing(2)
21
22
  },
@@ -9058,6 +9058,13 @@ declare const theme: {
9058
9058
  minWidth: string;
9059
9059
  };
9060
9060
  };
9061
+ '& .SCLiveStreamForm-warning': {
9062
+ margin: any;
9063
+ "& a": {
9064
+ color: any;
9065
+ fontWeight: string;
9066
+ };
9067
+ };
9061
9068
  "& .SCLiveStreamForm-access-view": {
9062
9069
  margin: any;
9063
9070
  };
@@ -9188,7 +9195,14 @@ declare const theme: {
9188
9195
  alignItems: string;
9189
9196
  alignContent: string;
9190
9197
  flexDirection: string;
9191
- "& .SCLiveStreamVideoConference-btn-back-home": {
9198
+ "& .SCLiveStreamRoom-logo": {
9199
+ img: {
9200
+ maxHeight: number;
9201
+ maxWidth: number;
9202
+ };
9203
+ marginBottom: any;
9204
+ };
9205
+ "& .SCLiveStreamRoom-btn-back-home": {
9192
9206
  marginTop: any;
9193
9207
  };
9194
9208
  };
@@ -9212,7 +9226,8 @@ declare const theme: {
9212
9226
  textAlign: string;
9213
9227
  "& .SCLiveStreamVideoConference-logo": {
9214
9228
  img: {
9215
- maxHeight: string;
9229
+ maxHeight: number;
9230
+ maxWidth: number;
9216
9231
  };
9217
9232
  marginBottom: any;
9218
9233
  };