Skip to content

Commit f0214d7

Browse files
authored
Merge pull request #90 from internxt/fix/mobile-style
[PB-5204]: fix/mobile-style
2 parents 4f7195c + 22e1488 commit f0214d7

5 files changed

Lines changed: 305 additions & 278 deletions

File tree

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
run: yarn build
3535

3636
- name: Run tests
37-
run: yarn test
37+
run: yarn test:cov

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
yarn run test
1+
yarn run test:cov
22
yarn run lint
33
yarn lint-staged

package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"dev": "vite",
99
"start": "vite build && vite preview",
1010
"build": "yarn clean && vite build",
11-
"test": "vitest run --coverage",
11+
"test": "vitest run",
12+
"test:cov": "vitest run --coverage",
1213
"clean": "rimraf dist coverage .wrangler tsconfig.tsbuildinfo",
1314
"lint": "eslint .",
1415
"pretty": "prettier --write **/*.{js,jsx,tsx,ts}",
@@ -18,10 +19,10 @@
1819
"dependencies": {
1920
"@headlessui/react": "2.2.9",
2021
"@internxt/lib": "1.4.1",
21-
"@internxt/sdk": "1.11.12",
22-
"@sentry/react": "10.22.0",
22+
"@internxt/sdk": "1.11.13",
23+
"@sentry/react": "10.23.0",
2324
"async": "3.2.6",
24-
"axios": "1.13.1",
25+
"axios": "1.13.2",
2526
"bip39": "3.1.0",
2627
"browserify-zlib": "0.2.0",
2728
"buffer": "6.0.3",
@@ -66,11 +67,11 @@
6667
]
6768
},
6869
"devDependencies": {
69-
"@cloudflare/vite-plugin": "1.13.19",
70+
"@cloudflare/vite-plugin": "1.14.0",
7071
"@internxt/eslint-config-internxt": "2.0.1",
7172
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
7273
"@rollup/plugin-replace": "6.0.3",
73-
"@tailwindcss/vite": "4.1.16",
74+
"@tailwindcss/vite": "4.1.17",
7475
"@testing-library/jest-dom": "6.9.1",
7576
"@types/async": "3.2.25",
7677
"@types/lodash.throttle": "4.1.9",
@@ -79,7 +80,7 @@
7980
"@types/react-dom": "19.2.2",
8081
"@types/streamsaver": "2.0.5",
8182
"@vitejs/plugin-react": "5.1.0",
82-
"@vitest/coverage-istanbul": "4.0.6",
83+
"@vitest/coverage-istanbul": "4.0.8",
8384
"autoprefixer": "10.4.21",
8485
"dotenv": "17.2.3",
8586
"eslint": "9.39.1",
@@ -89,13 +90,13 @@
8990
"postcss": "8.5.6",
9091
"prettier": "3.6.2",
9192
"rimraf": "6.1.0",
92-
"tailwindcss": "4.1.16",
93-
"vite": "7.1.12",
93+
"tailwindcss": "4.1.17",
94+
"vite": "7.2.2",
9495
"vite-plugin-bundle-obfuscator": "1.8.0",
9596
"vite-plugin-node-polyfills": "0.24.0",
9697
"vite-plugin-svgr": "4.5.0",
97-
"vitest": "4.0.6",
98-
"wrangler": "4.45.4"
98+
"vitest": "4.0.8",
99+
"wrangler": "4.46.0"
99100
},
100101
"lint-staged": {
101102
"*.{js,jsx,tsx,ts}": [

src/Layout.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,7 @@ export default function Layout({
206206
className="relative flex h-full max-w-screen-xl flex-col items-center justify-center md:px-10
207207
xl:mx-auto xl:px-0 3xl:max-w-full"
208208
>
209-
<div
210-
className="relative flex h-full w-full flex-row items-center justify-start space-x-20
211-
lg:pb-32 3xl:translate-x-50"
212-
>
209+
<div className="relative h-full w-full items-center justify-start space-x-20 lg:pb-32 3xl:translate-x-50">
213210
<div className="relative flex h-full w-full items-center lg:w-max">
214211
<Card className="relative z-30 flex shrink-0 flex-col pt-12 md:pt-0">{children}</Card>
215212
</div>

0 commit comments

Comments
 (0)