Skip to content

Commit

Permalink
fix: activity list scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-blockchain committed Aug 8, 2018
1 parent cc5042b commit 3e2c332
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ const Wrapper = styled.div`
@media (max-height: 800px), (max-width: 992px) {
height: 300px;
display: block;
overflow: scroll;
-ms-overflow-style: none;
&::-webkit-scrollbar {
width: 0 !important;
}
}
@media (max-height: 800px) {
margin-bottom: 30px;
Expand All @@ -41,9 +36,9 @@ const Header = styled.div`
`
const Content = styled.div`
width: 100%;
height: calc(100% - ${headerHeight});
height: calc(100% - ${headerHeight} - 10px);
overflow-y: auto;
padding-top: 10px;
margin-top: 10px;
> div:first-child {
border-left: none;
Expand Down

0 comments on commit 3e2c332

Please sign in to comment.