Skip to content
Snippets Groups Projects
Commit 31b4178a authored by Maz Ameli's avatar Maz Ameli Committed by Kyle Doherty
Browse files

make x-ray suggestions look nicer

parent 0760befd
No related branches found
No related tags found
No related merge requests found
......@@ -156,21 +156,9 @@ export const ExploreList = ({
);
export const ExploreOption = ({ option }: { option: Candidate }) => (
<Link to={option.url} className="flex align-center text-bold no-decoration">
<div
className="bg-grey-0 flex align-center rounded mr2 p2 justify-center text-gold"
style={{ width: 48, height: 48 }}
>
<Icon name="bolt" size={24} className="flex-no-shrink" />
</div>
<div>
<div className="link">{option.title}</div>
{option.description && (
<div className="text-grey-4 text-small" style={{ marginTop: "0.25em" }}>
{option.description}
</div>
)}
</div>
<Link to={option.url} className="flex align-center text-bold no-decoration text-grey-5 text-brand-hover bg-grey-0 p2 py3">
<Icon name="bolt" size={20} className="flex-no-shrink mr1 justify-center text-gold" />
<div><span className="text-normal">{t`A look at your`}</span> {option.title}</div>
</Link>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment