mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Update card styling on extension dashboard (#17032)
This commit is contained in:
@@ -234,7 +234,12 @@ export class DashboardWidget {
|
|||||||
title: taskMetaData.title,
|
title: taskMetaData.title,
|
||||||
width: maxWidth,
|
width: maxWidth,
|
||||||
CSSStyles: {
|
CSSStyles: {
|
||||||
'border': '1px solid'
|
'border': '1px solid',
|
||||||
|
'display': 'flex',
|
||||||
|
'flex-direction': 'column',
|
||||||
|
'justify-content': 'flex-start',
|
||||||
|
'border-radius': '4px',
|
||||||
|
'transition': 'all .5s ease',
|
||||||
}
|
}
|
||||||
}).component();
|
}).component();
|
||||||
this._disposables.push(buttonContainer.onDidClick(async () => {
|
this._disposables.push(buttonContainer.onDidClick(async () => {
|
||||||
@@ -389,7 +394,12 @@ export class DashboardWidget {
|
|||||||
'width': '400px',
|
'width': '400px',
|
||||||
'border': '1px solid',
|
'border': '1px solid',
|
||||||
'margin-top': '10px',
|
'margin-top': '10px',
|
||||||
'height': '50px'
|
'height': '50px',
|
||||||
|
'display': 'flex',
|
||||||
|
'flex-direction': 'column',
|
||||||
|
'justify-content': 'flex-start',
|
||||||
|
'border-radius': '4px',
|
||||||
|
'transition': 'all .5s ease',
|
||||||
}
|
}
|
||||||
}).component();
|
}).component();
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user