-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: adjust layout for the experiment detail page
- Loading branch information
Caleb Kang
committed
Jul 30, 2020
1 parent
2abd563
commit b350776
Showing
9 changed files
with
154 additions
and
123 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
5 changes: 0 additions & 5 deletions
5
webui/react/src/pages/ExperimentDetails/ExperimentActions.module.scss
This file was deleted.
Oops, something went wrong.
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
6 changes: 6 additions & 0 deletions
6
webui/react/src/pages/ExperimentDetails/ExperimentChart.module.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,6 @@ | ||
.base { | ||
border: solid var(--theme-sizes-border-width) var(--theme-colors-monochrome-12); | ||
border-radius: var(--theme-sizes-border-radius); | ||
height: 40rem; | ||
padding: var(--theme-sizes-layout-big); | ||
} |
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
28 changes: 20 additions & 8 deletions
28
webui/react/src/pages/ExperimentDetails/ExperimentInfoBox.module.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,14 +1,26 @@ | ||
.base { | ||
border: solid var(--theme-sizes-border-width) var(--theme-colors-monochrome-12); | ||
border-radius: var(--theme-sizes-border-radius); | ||
color: var(--theme-colors-monochrome-9); | ||
font-size: var(--theme-sizes-layout-big); | ||
margin-right: var(--theme-sizes-layout-medium); | ||
height: 100%; | ||
padding: var(--theme-sizes-layout-big); | ||
|
||
table { | ||
border-collapse: separate; | ||
border-spacing: 1rem 1rem; | ||
} | ||
.label { | ||
color: black; | ||
font-weight: 700; | ||
.info { | ||
align-items: center; | ||
display: flex; | ||
padding: var(--theme-sizes-layout-medium) 0; | ||
|
||
.label { | ||
color: var(--theme-colors-monochrome-9); | ||
flex-basis: 34%; | ||
font-size: var(--theme-sizes-font-small); | ||
max-width: 16rem; | ||
padding-right: var(--theme-sizes-layout-medium); | ||
} | ||
.content { | ||
color: var(--theme-colors-monochrome-6); | ||
font-size: var(--theme-sizes-font-medium); | ||
} | ||
} | ||
} |
Oops, something went wrong.