diff --git a/components/GridRep/index.scss b/components/GridRep/index.scss index 1664f029..3aee84c6 100644 --- a/components/GridRep/index.scss +++ b/components/GridRep/index.scss @@ -117,8 +117,6 @@ .bottom { display: flex; flex-direction: row; - color: $grey-55; - font-size: $font-small; a.user:hover { color: var(--link-text-hover); @@ -130,6 +128,13 @@ flex-grow: 1; } + .user, + .raid, + time { + color: $grey-55; + font-size: $font-small; + } + .Properties { .full_auto { color: var(--full-auto-text); diff --git a/components/GridRep/index.tsx b/components/GridRep/index.tsx index bf7b1eef..813635de 100644 --- a/components/GridRep/index.tsx +++ b/components/GridRep/index.tsx @@ -188,8 +188,17 @@ const GridRep = (props: Props) => {

{props.name ? props.name : t('no_title')}

-
- {props.raid ? props.raid.name[locale] : t('no_raid')} +
+ + {props.raid ? props.raid.name[locale] : t('no_raid')} + + {props.fullAuto ? ( + + {` ยท ${t('party.details.labels.full_auto')}`} + + ) : ( + '' + )}
{account.authorized &&