File tree 1 file changed +16
-5
lines changed
site/src/pages/WorkspacesPage
1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -157,28 +157,39 @@ const Workspaces: FC<StageProps> = ({ workspaces }) => {
157
157
direction = "row"
158
158
alignItems = "center"
159
159
justifyContent = "space-between"
160
+ spacing = { 3 }
160
161
>
161
162
< span
162
163
css = { { fontWeight : 500 , color : theme . experimental . l1 . text } }
163
164
>
164
165
{ workspace . name }
165
166
</ span >
166
- < Stack css = { { gap : 0 , fontSize : 14 , width : 128 } } >
167
- < Stack direction = "row" alignItems = "center" spacing = { 1 } >
168
- < PersonIcon />
167
+ < Stack css = { { gap : 0 , fontSize : 14 } } justifyContent = "flex-end" >
168
+ < Stack
169
+ direction = "row"
170
+ alignItems = "center"
171
+ justifyContent = "flex-end"
172
+ spacing = { 1 }
173
+ >
169
174
< span
170
175
css = { { whiteSpace : "nowrap" , textOverflow : "ellipsis" } }
171
176
>
172
177
{ workspace . owner_name }
173
178
</ span >
179
+ < PersonIcon />
174
180
</ Stack >
175
- < Stack direction = "row" alignItems = "center" spacing = { 1 } >
176
- < ScheduleIcon css = { styles . summaryIcon } />
181
+ < Stack
182
+ direction = "row"
183
+ alignItems = "center"
184
+ spacing = { 1 }
185
+ justifyContent = "flex-end"
186
+ >
177
187
< span
178
188
css = { { whiteSpace : "nowrap" , textOverflow : "ellipsis" } }
179
189
>
180
190
{ dayjs ( workspace . last_used_at ) . fromNow ( ) }
181
191
</ span >
192
+ < ScheduleIcon css = { styles . summaryIcon } />
182
193
</ Stack >
183
194
</ Stack >
184
195
</ Stack >
You can’t perform that action at this time.
0 commit comments