diff --git a/components/TagSelector/UnselectedTag.tsx b/components/TagSelector/UnselectedTag.tsx index bbf705d..879aaf5 100644 --- a/components/TagSelector/UnselectedTag.tsx +++ b/components/TagSelector/UnselectedTag.tsx @@ -1,17 +1,13 @@ import { type FC } from 'react'; import styles from 'styles/tagSelector.module.css'; -import actionable from 'styles/actionable.module.css'; import { type Tag } from '@eosc-perf/eosc-perf-client'; import clsx from 'clsx'; type UnselectedTagProps = { tag: Tag; select: (tag: Tag) => void }; const UnselectedTag: FC = ({ tag, select }) => ( -
select(tag)} - > +
+ ); export default UnselectedTag; diff --git a/styles/tagSelector.module.css b/styles/tagSelector.module.css index dfb9e38..ed51d95 100644 --- a/styles/tagSelector.module.css +++ b/styles/tagSelector.module.css @@ -1,10 +1,9 @@ - .tagBadge { border: solid 0.1em; border-radius: 4px; + background-color: unset; } .tagBadge:not(:last-child) { margin-right: 2px; } -