-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor/form-validation
- Loading branch information
Showing
4 changed files
with
230 additions
and
9 deletions.
There are no files selected for viewing
70 changes: 69 additions & 1 deletion
70
src/features/Results/CaseResult/CaseResultView/CaseResultView.styled.tsx
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,9 +1,77 @@ | ||
import styled from 'styled-components'; | ||
import { spacings } from '../../../../tokens/spacings'; | ||
import { theme } from '../../../../tokens/theme'; | ||
|
||
export const CaseResultView = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
column-gap: ${spacings.LARGE}; | ||
row-gap: ${spacings.MEDIUM}; | ||
padding-left: ${spacings.LARGE}; | ||
padding-bottom: ${spacings.LARGE}; | ||
> h2 { | ||
margin-bottom: ${spacings.SMALL}; | ||
} | ||
> h3 { | ||
margin: ${spacings.SMALL}; | ||
} | ||
`; | ||
|
||
export const CaseResultList = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: ${spacings.LARGE}; | ||
`; | ||
|
||
export const CaseResultCard = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
row-gap: ${spacings.LARGE}; | ||
width: 60vw; | ||
padding: ${spacings.X_LARGE}; | ||
border-radius: ${spacings.CARD_ROUNDED}; | ||
box-shadow: ${theme.light.ui.elevation.raised}; | ||
> div { | ||
width: 50%; | ||
} | ||
`; | ||
export const CaseResultStatus = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
padding: ${spacings.SMALL}; | ||
row-gap: ${spacings.SMALL}; | ||
`; | ||
|
||
export const CaseLeftDiv = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: ${spacings.LARGE}; | ||
> table { | ||
width: 80%; | ||
} | ||
`; | ||
|
||
export const CaseStatusDisplay = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
column-gap: ${spacings.LARGE}; | ||
`; | ||
|
||
export const CaseStatusButtons = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
column-gap: ${spacings.SMALL}; | ||
padding-top: ${spacings.SMALL}; | ||
> button { | ||
width: ${spacings.COMPUTE_BUTTON}; | ||
} | ||
`; |
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
Binary file added
BIN
+104 KB
...ures/Results/CaseResult/CaseResultView/vargrest_output-0-_variogram_slices_.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+102 KB
...ures/Results/CaseResult/CaseResultView/vargrest_output-1-_variogram_slices_.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.