Skip to content

Commit

Permalink
Merge pull request #340 from allen-cell-animated/fix/tag-styling
Browse files Browse the repository at this point in the history
fix: Changed "In Review" flag styling
  • Loading branch information
ShrimpCryptid authored Dec 11, 2024
2 parents 849cc9f + 812f642 commit cc77aa3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/aics-image-viewer/components/StyleProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ const theme = {
bannerBg: "#020202DB",
},
statusFlag: {
bg: palette.veryLtPurple,
text: palette.veryDarkPurple,
border: palette.medGrey,
text: palette.ltGrey,
},
layout: {
dividers: palette.medGrey,
Expand Down Expand Up @@ -204,7 +204,7 @@ const CssProvider = styled.div<{ $theme: AppTheme }>`
--color-landingpage-text: ${$theme.colors.landingPage.text};
--color-landingpage-banner-highlight-bg: ${$theme.colors.landingPage.bannerBg};
--color-statusflag-bg: ${$theme.colors.statusFlag.bg};
--color-statusflag-border: ${$theme.colors.statusFlag.border};
--color-statusflag-text: ${$theme.colors.statusFlag.text};
--color-layout-dividers: ${$theme.colors.layout.dividers};
Expand Down
6 changes: 3 additions & 3 deletions website/components/LandingPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,15 +209,15 @@ const DatasetCard = styled.li`
const InReviewFlag = styled(FlexRowAlignCenter)`
border-radius: 4px;
padding: 1px 6px;
background-color: var(--color-statusflag-bg);
height: 22px;
border: 1px solid var(--color-statusflag-border);
height: 23px;
flex-wrap: wrap;
&& > p {
margin-bottom: 0;
color: var(--color-statusflag-text);
font-size: 11px;
font-weight: 600;
font-weight: 500;
white-space: nowrap;
}
`;
Expand Down

0 comments on commit cc77aa3

Please sign in to comment.