Skip to content

Commit a00d558

Browse files
authored
Merge branch 'main' into 2483d-embedded-wallets-pass
2 parents 9acf750 + 44e4ce5 commit a00d558

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"typecheck-staged": "tsc-files --noEmit",
1818
"lint": "npm run lint:js && npm run lint:style",
1919
"lint:js": "eslint . --max-warnings=5",
20-
"lint:style": "stylelint 'src/**/*.css' --fix",
20+
"lint:style": "stylelint \"src/**/*.css\" --fix",
2121
"lint:fix": "npm run lint:js -- --fix",
2222
"format": "prettier --write '{blog,docs,src}/**/*.{md,mdx,ts,js,tsx,jsx,json}'"
2323
},

src/components/CopyPageButton/CopyPageButton.module.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
min-height: 48px; /* Ensure minimum height for button */
66
}
77

8-
@media (min-width: 997px) {
8+
@media (width >= 997px) {
99
.h1Wrapper h1 {
1010
/* Don't override the default H1 margin-bottom */
11+
1112
/* Add padding-right to prevent text from going under the button */
1213
padding-right: 180px;
1314
}
@@ -71,7 +72,7 @@
7172
backdrop-filter: blur(10px);
7273
}
7374

74-
@media (max-width: 996px) {
75+
@media (width <= 996px) {
7576
.container {
7677
display: none;
7778
}

src/components/TutorialsPage/styles.module.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,7 @@ html[data-theme='dark'] mark {
686686

687687
.buttonGroup {
688688
width: 100%;
689-
overflow-x: auto;
690-
overflow-y: hidden;
689+
overflow: auto hidden;
691690
-webkit-overflow-scrolling: touch;
692691
}
693692

src/pages/quickstart/NavigationOverlay/NavigationOverlay.module.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -548,10 +548,7 @@ html[data-theme='dark'] .cardDescription {
548548
@media (width <=768px) {
549549
.overlayContainer {
550550
position: fixed;
551-
top: 0;
552-
left: 0;
553-
right: 0;
554-
bottom: 0;
551+
inset: 0;
555552
width: 100vw;
556553
height: 100vh;
557554
overflow: hidden;

src/pages/quickstart/styles.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
text-underline-offset: .4rem;
88
transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
99
}
10+
1011
.stepBody a:hover,
1112
.stepBody a:focus {
1213
color: var(--ifm-link-hover-color);

src/theme/Tiles/styles.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
text-decoration: none !important;
3232
border-color: var(--ifm-color-primary);
3333
transform: translateY(-1px);
34-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
34+
box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
3535
}
3636

3737
.tile:focus {

0 commit comments

Comments
 (0)