@selfcommunity/react-theme-default 0.4.2-courses.104 → 0.4.2-courses.106

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,7 @@ declare const Component: {
13
13
  display: string;
14
14
  };
15
15
  width: string;
16
+ minHeight: string;
16
17
  height: string;
17
18
  borderBottomLeftRadius: string;
18
19
  borderBottomRightRadius: string;
@@ -143,6 +144,7 @@ declare const Component: {
143
144
  justifyContent: string;
144
145
  '& .SCCourseDashboard-user': {
145
146
  flexDirection: string;
147
+ alignItems: string;
146
148
  gap: string;
147
149
  marginTop: string;
148
150
  marginBottom: string;
@@ -151,6 +153,10 @@ declare const Component: {
151
153
  height: string;
152
154
  };
153
155
  };
156
+ '& .SCCourseDashboard-actions-wrapper': {
157
+ flexDirection: string;
158
+ gap: string;
159
+ };
154
160
  };
155
161
  '& .SCCourseDashboard-lessons-sections': {
156
162
  flexDirection: string;
@@ -10,7 +10,8 @@ const Component = {
10
10
  },
11
11
  '& .SCCourseDashboard-header-img': {
12
12
  width: '100%',
13
- height: '150px',
13
+ minHeight: '150px',
14
+ height: '230px',
14
15
  borderBottomLeftRadius: '10px',
15
16
  borderBottomRightRadius: '10px',
16
17
  marginBottom: '17px',
@@ -140,6 +141,7 @@ const Component = {
140
141
  justifyContent: 'space-between',
141
142
  '& .SCCourseDashboard-user': {
142
143
  flexDirection: 'row',
144
+ alignItems: 'center',
143
145
  gap: '4px',
144
146
  marginTop: '6px',
145
147
  marginBottom: '6px',
@@ -147,6 +149,10 @@ const Component = {
147
149
  width: '36px',
148
150
  height: '36px'
149
151
  }
152
+ },
153
+ '& .SCCourseDashboard-actions-wrapper': {
154
+ flexDirection: 'row',
155
+ gap: '5px'
150
156
  }
151
157
  },
152
158
  '& .SCCourseDashboard-lessons-sections': {
@@ -1990,6 +1990,7 @@ declare const theme: {
1990
1990
  display: string;
1991
1991
  };
1992
1992
  width: string;
1993
+ minHeight: string;
1993
1994
  height: string;
1994
1995
  borderBottomLeftRadius: string;
1995
1996
  borderBottomRightRadius: string;
@@ -2120,6 +2121,7 @@ declare const theme: {
2120
2121
  justifyContent: string;
2121
2122
  '& .SCCourseDashboard-user': {
2122
2123
  flexDirection: string;
2124
+ alignItems: string;
2123
2125
  gap: string;
2124
2126
  marginTop: string;
2125
2127
  marginBottom: string;
@@ -2128,6 +2130,10 @@ declare const theme: {
2128
2130
  height: string;
2129
2131
  };
2130
2132
  };
2133
+ '& .SCCourseDashboard-actions-wrapper': {
2134
+ flexDirection: string;
2135
+ gap: string;
2136
+ };
2131
2137
  };
2132
2138
  '& .SCCourseDashboard-lessons-sections': {
2133
2139
  flexDirection: string;
@@ -13,6 +13,7 @@ declare const Component: {
13
13
  display: string;
14
14
  };
15
15
  width: string;
16
+ minHeight: string;
16
17
  height: string;
17
18
  borderBottomLeftRadius: string;
18
19
  borderBottomRightRadius: string;
@@ -143,6 +144,7 @@ declare const Component: {
143
144
  justifyContent: string;
144
145
  '& .SCCourseDashboard-user': {
145
146
  flexDirection: string;
147
+ alignItems: string;
146
148
  gap: string;
147
149
  marginTop: string;
148
150
  marginBottom: string;
@@ -151,6 +153,10 @@ declare const Component: {
151
153
  height: string;
152
154
  };
153
155
  };
156
+ '& .SCCourseDashboard-actions-wrapper': {
157
+ flexDirection: string;
158
+ gap: string;
159
+ };
154
160
  };
155
161
  '& .SCCourseDashboard-lessons-sections': {
156
162
  flexDirection: string;
@@ -8,7 +8,8 @@ const Component = {
8
8
  },
9
9
  '& .SCCourseDashboard-header-img': {
10
10
  width: '100%',
11
- height: '150px',
11
+ minHeight: '150px',
12
+ height: '230px',
12
13
  borderBottomLeftRadius: '10px',
13
14
  borderBottomRightRadius: '10px',
14
15
  marginBottom: '17px',
@@ -138,6 +139,7 @@ const Component = {
138
139
  justifyContent: 'space-between',
139
140
  '& .SCCourseDashboard-user': {
140
141
  flexDirection: 'row',
142
+ alignItems: 'center',
141
143
  gap: '4px',
142
144
  marginTop: '6px',
143
145
  marginBottom: '6px',
@@ -145,6 +147,10 @@ const Component = {
145
147
  width: '36px',
146
148
  height: '36px'
147
149
  }
150
+ },
151
+ '& .SCCourseDashboard-actions-wrapper': {
152
+ flexDirection: 'row',
153
+ gap: '5px'
148
154
  }
149
155
  },
150
156
  '& .SCCourseDashboard-lessons-sections': {
@@ -1990,6 +1990,7 @@ declare const theme: {
1990
1990
  display: string;
1991
1991
  };
1992
1992
  width: string;
1993
+ minHeight: string;
1993
1994
  height: string;
1994
1995
  borderBottomLeftRadius: string;
1995
1996
  borderBottomRightRadius: string;
@@ -2120,6 +2121,7 @@ declare const theme: {
2120
2121
  justifyContent: string;
2121
2122
  '& .SCCourseDashboard-user': {
2122
2123
  flexDirection: string;
2124
+ alignItems: string;
2123
2125
  gap: string;
2124
2126
  marginTop: string;
2125
2127
  marginBottom: string;
@@ -2128,6 +2130,10 @@ declare const theme: {
2128
2130
  height: string;
2129
2131
  };
2130
2132
  };
2133
+ '& .SCCourseDashboard-actions-wrapper': {
2134
+ flexDirection: string;
2135
+ gap: string;
2136
+ };
2131
2137
  };
2132
2138
  '& .SCCourseDashboard-lessons-sections': {
2133
2139
  flexDirection: string;