Make website mobile friendly

This commit is contained in:
fragosti
2019-08-15 17:01:50 -07:00
parent 05489dd7f1
commit 302d08e290
3 changed files with 36 additions and 15 deletions

View File

@@ -19,11 +19,14 @@ interface TabProps {
isActive: boolean;
}
const TabbedWrapper = styled.div`
export const TabbedWrapper = styled.div`
background-color: #0c2320;
width: 100%;
height: 586px;
margin-left: 50px;
@media (max-width: 768px) {
display: none;
}
`;
const Tab = styled.div<TabProps>`