-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…#267) (#276) Signed-off-by: Jovan Cvetkovic <[email protected]> Signed-off-by: Jovan Cvetkovic <[email protected]> (cherry picked from commit 8c5246c) Co-authored-by: Jovan Cvetkovic <[email protected]>
- Loading branch information
1 parent
22e61f5
commit 7e3ee08
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
public/pages/Overview/components/Widgets/WidgetContainer.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.grid-item { | ||
> div { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
|
||
> :nth-child(1) { | ||
flex: 0; | ||
} | ||
|
||
> :nth-child(3) { | ||
flex: 1; | ||
|
||
> div { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
|
||
> :first-child { | ||
flex: 1; | ||
} | ||
} | ||
} | ||
} | ||
} |