fix navbar z-index
This commit is contained in:
parent
fbc8e11722
commit
1f62f0efd5
|
@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed error when viewing some uncrawlable instances
|
- Fixed error when viewing some uncrawlable instances
|
||||||
|
- Fix navbar z-index
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ const FloatingCardRow = styled.div`
|
||||||
`;
|
`;
|
||||||
const FloatingCardElement = styled(Card)`
|
const FloatingCardElement = styled(Card)`
|
||||||
margin: 0 0 10px 10px;
|
margin: 0 0 10px 10px;
|
||||||
z-index: 20;
|
z-index: 2;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const FloatingCard: React.FC<ICardProps> = props => (
|
const FloatingCard: React.FC<ICardProps> = props => (
|
||||||
|
|
|
@ -8,7 +8,7 @@ const Backdrop = styled.div`
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
background-color: #293742;
|
background-color: #293742;
|
||||||
z-index: 100;
|
z-index: 3;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
interface IContainerProps {
|
interface IContainerProps {
|
||||||
|
|
Loading…
Reference in a new issue