Skip to content

Commit

Permalink
Removing unused styles
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed May 4, 2024
1 parent 7c77bd3 commit a996356
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 19 deletions.
5 changes: 1 addition & 4 deletions packages/wallet/src/shared/KitWalletProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { getHeader, getContent } from './utils'
import { History, Navigation, NavigationContextProvider, WalletModalContextProvider } from '../../contexts'

import { HEADER_HEIGHT } from '../../constants'
import * as styles from '../styles.css'

import '@0xsequence/design-system/styles.css'

Expand Down Expand Up @@ -110,9 +109,7 @@ export const KitWalletContent = ({ children }: KitWalletProviderProps) => {
{getHeader(navigation)}

{displayScrollbar ? (
<Scroll className={styles.scrollbar} style={{ paddingTop: HEADER_HEIGHT, height: 'min(800px, 80vh)' }}>
{getContent(navigation)}
</Scroll>
<Scroll style={{ paddingTop: HEADER_HEIGHT, height: 'min(800px, 80vh)' }}>{getContent(navigation)}</Scroll>
) : (
getContent(navigation)
)}
Expand Down
7 changes: 0 additions & 7 deletions packages/wallet/src/shared/WalletHeader/styles.css.ts

This file was deleted.

8 changes: 0 additions & 8 deletions packages/wallet/src/shared/styles.css.ts

This file was deleted.

0 comments on commit a996356

Please sign in to comment.