Skip to content

Commit

Permalink
Revert "Added support Iphone SE Size (Not 100% DONT PULL)"
Browse files Browse the repository at this point in the history
This reverts commit 9b5d187.
  • Loading branch information
Crazypkr1099 committed Sep 6, 2023
1 parent 3f7dbd0 commit 12d3bcc
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 1,429 deletions.
4 changes: 1 addition & 3 deletions packages/desktop-client/src/ResponsiveProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { breakpoints } from './tokens';

type TResponsiveContext = {
atLeastMediumWidth: boolean;
isExtraSmallWidth: boolean;
isNarrowWidth: boolean;
isSmallWidth: boolean;
isMediumWidth: boolean;
Expand Down Expand Up @@ -35,8 +34,7 @@ export function ResponsiveProvider(props: { children: ReactNode }) {
const viewportInfo = {
// atLeastMediumWidth is provided to avoid checking (isMediumWidth || isWideWidth)
atLeastMediumWidth: width >= breakpoints.medium,
isExtraSmallWidth: width < breakpoints.extrasmall,
isNarrowWidth: width >= breakpoints.extrasmall && width < breakpoints.small,
isNarrowWidth: width < breakpoints.small,
isSmallWidth: width >= breakpoints.small && width < breakpoints.medium,
isMediumWidth: width >= breakpoints.medium && width < breakpoints.wide,
// No atLeastWideWidth because that's identical to isWideWidth
Expand Down
317 changes: 0 additions & 317 deletions packages/desktop-client/src/components/budget/MobileBudgetSmall.js

This file was deleted.

Loading

0 comments on commit 12d3bcc

Please sign in to comment.