mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
Fix flex container and card layout issues (#1195)
* Fix main layout issues and add box around card - Need to improve box size as it's taking too much space * Fix UI issues with flexContainer and cards * Simplify card HTML
This commit is contained in:
10
src/sql/sqlops.proposed.d.ts
vendored
10
src/sql/sqlops.proposed.d.ts
vendored
@@ -108,6 +108,14 @@ declare module 'sqlops' {
|
||||
* Matches the justify-content CSS property.
|
||||
*/
|
||||
justifyContent?: string;
|
||||
/**
|
||||
* Matches the align-items CSS property.
|
||||
*/
|
||||
alignItems?: string;
|
||||
/**
|
||||
* Matches the align-content CSS property.
|
||||
*/
|
||||
alignContent?: string;
|
||||
}
|
||||
|
||||
export interface FlexItemLayout {
|
||||
@@ -117,7 +125,7 @@ declare module 'sqlops' {
|
||||
order?: number;
|
||||
/**
|
||||
* Matches the flex CSS property and its available values.
|
||||
* Default is "0 1 auto".
|
||||
* Default is "1 1 auto".
|
||||
*/
|
||||
flex?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user