@selfcommunity/react-theme-default 0.4.2-courses.125 → 0.4.2-courses.127
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.
- package/lib/cjs/components/SCLessonAppbar.d.ts +5 -0
- package/lib/cjs/components/SCLessonAppbar.js +4 -0
- package/lib/cjs/index.d.ts +5 -0
- package/lib/esm/components/SCLessonAppbar.d.ts +5 -0
- package/lib/esm/components/SCLessonAppbar.js +4 -0
- package/lib/esm/index.d.ts +5 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -9,6 +9,10 @@ const Component = {
|
|
|
9
9
|
textOverflow: 'ellipsis',
|
|
10
10
|
whiteSpace: 'nowrap'
|
|
11
11
|
}
|
|
12
|
+
}, '& .SCLessonAppbar-start-items': {
|
|
13
|
+
flexGrow: 1,
|
|
14
|
+
display: 'flex',
|
|
15
|
+
alignItems: 'center'
|
|
12
16
|
}, boxShadow: 'none', borderBottom: `1px solid ${theme.palette.grey[300]}`, '& .MuiToolbar-root': {
|
|
13
17
|
minHeight: '60px'
|
|
14
18
|
}, transition: theme.transitions.create(['margin', 'width'], {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5218,6 +5218,11 @@ declare const theme: {
|
|
|
5218
5218
|
};
|
|
5219
5219
|
flexGrow: number;
|
|
5220
5220
|
};
|
|
5221
|
+
'& .SCLessonAppbar-start-items': {
|
|
5222
|
+
flexGrow: number;
|
|
5223
|
+
display: string;
|
|
5224
|
+
alignItems: string;
|
|
5225
|
+
};
|
|
5221
5226
|
boxShadow: string;
|
|
5222
5227
|
borderBottom: string;
|
|
5223
5228
|
'& .MuiToolbar-root': {
|
|
@@ -7,6 +7,10 @@ const Component = {
|
|
|
7
7
|
textOverflow: 'ellipsis',
|
|
8
8
|
whiteSpace: 'nowrap'
|
|
9
9
|
}
|
|
10
|
+
}, '& .SCLessonAppbar-start-items': {
|
|
11
|
+
flexGrow: 1,
|
|
12
|
+
display: 'flex',
|
|
13
|
+
alignItems: 'center'
|
|
10
14
|
}, boxShadow: 'none', borderBottom: `1px solid ${theme.palette.grey[300]}`, '& .MuiToolbar-root': {
|
|
11
15
|
minHeight: '60px'
|
|
12
16
|
}, transition: theme.transitions.create(['margin', 'width'], {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5218,6 +5218,11 @@ declare const theme: {
|
|
|
5218
5218
|
};
|
|
5219
5219
|
flexGrow: number;
|
|
5220
5220
|
};
|
|
5221
|
+
'& .SCLessonAppbar-start-items': {
|
|
5222
|
+
flexGrow: number;
|
|
5223
|
+
display: string;
|
|
5224
|
+
alignItems: string;
|
|
5225
|
+
};
|
|
5221
5226
|
boxShadow: string;
|
|
5222
5227
|
borderBottom: string;
|
|
5223
5228
|
'& .MuiToolbar-root': {
|