fix navbar z-index

This commit is contained in:
Tao Bror Bojlén 2019-08-30 13:44:00 +01:00
parent fbc8e11722
commit 1f62f0efd5
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
3 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed error when viewing some uncrawlable instances
- Fix navbar z-index
### Security

View File

@ -8,7 +8,7 @@ const FloatingCardRow = styled.div`
`;
const FloatingCardElement = styled(Card)`
margin: 0 0 10px 10px;
z-index: 20;
z-index: 2;
`;
const FloatingCard: React.FC<ICardProps> = props => (

View File

@ -8,7 +8,7 @@ const Backdrop = styled.div`
left: 0;
right: 0;
background-color: #293742;
z-index: 100;
z-index: 3;
`;
interface IContainerProps {