-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved results css to sass module, started react fc for results header
- Loading branch information
Showing
3 changed files
with
50 additions
and
43 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
30 changes: 30 additions & 0 deletions
30
teachertool/src/components/styling/EvalResultDisplay.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,30 @@ | ||
.eval-results-container { | ||
border-top: 1px solid #ddd; | ||
border-bottom: 1px solid #ddd; | ||
margin: 1rem 0; | ||
padding: 1rem; | ||
overflow: auto; | ||
} | ||
|
||
.result-block-id { | ||
display: flex; | ||
padding-left: 0.5rem; | ||
margin: 0.2rem 0; | ||
} | ||
|
||
.result-block-id p { | ||
margin: 0; | ||
} | ||
|
||
.block-id-label { | ||
font-weight: 700; | ||
padding-right: 0.5rem; | ||
} | ||
|
||
.positive-text { | ||
color: green; | ||
} | ||
|
||
.negative-text { | ||
color: red; | ||
} |
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