Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Fix bottom margin values so intercom does not overlap other components (
Browse files Browse the repository at this point in the history
#2833)

* Fix bottom margin values so intercom does not overlap other components

* Extend the transactions list height until behind the intercom button
  • Loading branch information
DiogoSoaress authored Oct 19, 2021
1 parent 671675b commit 053396f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as React from 'react'
import TableHead from 'src/components/Table/TableHead'
import { getSorting, stableSort } from 'src/components/Table/sorting'
import Row from 'src/components/layout/Row'
import { sm, xl, xxl } from 'src/theme/variables'
import { sm, xxl } from 'src/theme/variables'

const styles = {
root: {
Expand All @@ -27,7 +27,7 @@ const styles = {
paginationRoot: {
backgroundColor: 'white',
boxShadow: '1px 2px 10px 0 rgba(212, 212, 211, 0.59)',
marginBottom: xl,
marginBottom: '90px',
borderBottomRightRadius: sm,
borderBottomLeftRadius: sm,
},
Expand Down
1 change: 1 addition & 0 deletions src/routes/safe/components/Apps/components/AppsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const SectionHeading = styled(Text)`

const CenterIconText = styled(IconText)`
justify-content: center;
margin-right: 55px;
`

const AppsList = (): React.ReactElement => {
Expand Down

0 comments on commit 053396f

Please sign in to comment.