-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: seurat deprecation notice (SCE-32) (#7365)
- Loading branch information
Showing
5 changed files
with
164 additions
and
1 deletion.
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
28 changes: 28 additions & 0 deletions
28
...ponents/Dataset/components/DownloadDataset/components/Content/components/Details/style.ts
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,6 +1,34 @@ | ||
import { Icon } from "@czi-sds/components"; | ||
import styled from "@emotion/styled"; | ||
import { FormControl as MFormControl } from "@mui/material"; | ||
import { cornersM, spacesM, spacesS, textPrimary } from "src/common/theme"; | ||
|
||
export const FormControl = styled(MFormControl)` | ||
min-height: 240px; | ||
`; | ||
|
||
export const SeuratNotice = styled.div` | ||
align-items: center; | ||
background-color: #ffefcf; | ||
border-radius: ${cornersM}px; | ||
display: flex; | ||
font-size: 13px; | ||
color: ${textPrimary}; | ||
gap: ${spacesS}px; | ||
margin: 0 0 ${spacesM}px; | ||
padding: ${spacesS}px ${spacesM}px; | ||
`; | ||
|
||
export const StyledIcon = styled(Icon)` | ||
color: #b77800; | ||
`; | ||
|
||
export const StyledLink = styled.a` | ||
color: #b77800; | ||
text-decoration: underline; | ||
margin: 0; | ||
`; | ||
|
||
export const TextWrapper = styled.span` | ||
display: inline; | ||
`; |
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