Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
mayaraman19 committed Oct 18, 2023
1 parent 3086da7 commit bfb8ad7
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/components/SearchResults/Facets/FacetValue.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { useCallback, useContext, useMemo } from 'react';
import Button from '@leafygreen-ui/button';
import Checkbox from '@leafygreen-ui/checkbox';
import { palette } from '@leafygreen-ui/palette';
import { css, cx } from '@leafygreen-ui/emotion';
import SearchContext, { FACETS_KEY_PREFIX, FACETS_LEVEL_KEY } from '../SearchContext';
import FacetGroup from './FacetGroup';
Expand All @@ -20,18 +21,24 @@ const checkboxStyle = css`
const onlyButtonStyle = css`
opacity: 0;
flex: 1;
background-color: inherit;
border: none;
height: 13px;
align-self: center;
div {
padding: 0px;
border: none;
display: flex;
justify-content: center;
align-items: center;
color: ${palette.gray.base};
}
:hover {
opacity: 1;
border: none;
border: 0px;
box-shadow: none;
}
:hover + div {
border: none;
}
border: none;
`;

const container = css`
Expand Down

0 comments on commit bfb8ad7

Please sign in to comment.