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:
Kevin Cunnane
2018-04-23 09:54:44 -07:00
committed by GitHub
parent 3d6fb7a8fa
commit 619c816e7f
6 changed files with 65 additions and 13 deletions

View File

@@ -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;
}