-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rm changes to create-scenarios component
- Loading branch information
1 parent
2e9128b
commit 525ba4a
Showing
6 changed files
with
55 additions
and
42 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
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
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
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
43 changes: 42 additions & 1 deletion
43
src/interface/src/app/plan/uploaded-scenario-view/uploaded-scenario-view.component.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 |
---|---|---|
@@ -1,7 +1,48 @@ | ||
@import 'colors'; | ||
|
||
:host { | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
background-color: purple; | ||
width: 100%; | ||
background-color: $color-soft-purple; | ||
display: flex; | ||
align-items: center; | ||
z-index: 5; | ||
top: 0; | ||
left: 0; | ||
} | ||
|
||
.uploaded-scenario-panel-content { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
height: 100%; | ||
width: 100%; | ||
z-index: 5; | ||
top: 0; | ||
left: 0; | ||
} | ||
|
||
.uploaded-treatments-tab { | ||
flex-grow: 1; | ||
width: 100%; | ||
background-color: $color-soft-purple; | ||
} | ||
|
||
.treatment-footer { | ||
background-color: $color-white; | ||
padding: 16px 8px; | ||
box-sizing: border-box; | ||
bottom: 0; | ||
width: 100%; | ||
text-align: right; | ||
display: flex; | ||
justify-content: flex-end; | ||
align-items: center; | ||
flex-grow: 0; | ||
position: sticky; | ||
z-index: 500; | ||
border-top: 1px solid $color-soft-gray; | ||
} |
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