diff --git a/src/common/index.scss b/src/common/index.scss index 35e018f9..8601b512 100644 --- a/src/common/index.scss +++ b/src/common/index.scss @@ -12,4 +12,8 @@ &.unseen { background-color: rgba($success, 0.4); } + + .avatar-image { + background-position-y: -35px; + } } diff --git a/src/common/layout/LayoutGridItem.tsx b/src/common/layout/LayoutGridItem.tsx index 63b153e2..d2c86661 100644 --- a/src/common/layout/LayoutGridItem.tsx +++ b/src/common/layout/LayoutGridItem.tsx @@ -1,5 +1,7 @@ import { FC, useMemo } from 'react'; import { ItemCountView } from '../../views/shared/item-count/ItemCountView'; +import { LimitedEditionStyledNumberView } from '../../views/shared/limited-edition/styled-number/LimitedEditionStyledNumberView'; +import { Base } from '../Base'; import { Column, ColumnProps } from '../Column'; export interface LayoutGridItemProps extends ColumnProps @@ -51,10 +53,13 @@ export const LayoutGridItem: FC = props => { (itemCount > itemCountMinimum) && } - {/* { (itemUniqueNumber > 0) && -
- -
} */} + { (itemUniqueNumber > 0) && + <> + +
+ +
+ } { children }
); diff --git a/src/common/types/OverflowType.ts b/src/common/types/OverflowType.ts index 78ca4b5c..a8a793db 100644 --- a/src/common/types/OverflowType.ts +++ b/src/common/types/OverflowType.ts @@ -1 +1 @@ -export type OverflowType = 'hidden' | 'auto'; +export type OverflowType = 'hidden' | 'auto' | 'unset';