Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/cors": "^2.8.19",
Expand Down
216 changes: 9 additions & 207 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,207 +1,9 @@
@keyframes mdblink {
0%,
49% {
opacity: 1;
}
50%,
100% {
opacity: 0;
}
}

@keyframes mdpulse {
0% {
transform: scale(0.85);
opacity: 0.55;
}
70% {
opacity: 0;
}
100% {
transform: scale(2.4);
opacity: 0;
}
}

@keyframes mddash {
to {
stroke-dashoffset: 0;
}
}

@keyframes mdfloat {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-9px);
}
}

@keyframes spin {
to {
transform: rotate(360deg);
}
}

@keyframes mddrift {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(0, -120px, 0);
}
}

@keyframes hp-shimmer {
0%,
100% {
opacity: 0.62;
transform: scaleX(0.98);
}
50% {
opacity: 1;
transform: scaleX(1);
}
}

[style*="mdpulse"],
[style*="mdfloat"],
[style*="spin"],
[style*="mddrift"],
[style*="hp-shimmer"] {
will-change: transform, opacity;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: #ece0cc;
-webkit-font-smoothing: antialiased;
}

::selection {
background: #9bbc0f;
color: #1c2c24;
}

/* Character positioning — responsive */
.char-image {
mix-blend-mode: multiply;
position: absolute;
pointer-events: none;
display: none;
}

@media (min-width: 1200px) {
.char-image {
display: block;
}
}

@media (min-width: 1200px) and (max-width: 1600px) {
.char-image {
left: auto !important;
right: 0;
}
}

/* Mapbox overrides — HelPhone palette */
.mapboxgl-popup-content {
background: #234b4e;
color: rgba(242, 236, 220, 0.92);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
padding: 0;
}
.mapboxgl-popup-tip {
border-top-color: #234b4e;
}

/* Stellar Wallets Kit modal — HelPhone polish */
.stellar-wallets-kit {
color-scheme: dark;
}

.stellar-wallets-kit > section {
width: min(92vw, 390px) !important;
max-width: min(92vw, 390px) !important;
max-height: min(82vh, 560px) !important;
border-radius: 16px !important;
border: 1px solid rgba(255, 255, 255, 0.12) !important;
background: #1c2c24 !important;
box-shadow: 0 24px 72px rgba(0, 0, 0, 0.58) !important;
}

.stellar-wallets-kit img {
width: 32px !important;
height: 32px !important;
min-width: 32px !important;
min-height: 32px !important;
max-width: 32px !important;
max-height: 32px !important;
border-radius: 50% !important;
object-fit: contain !important;
background: rgba(255, 255, 255, 0.08) !important;
font-size: 0 !important;
color: transparent !important;
overflow: hidden !important;
}

.stellar-wallets-kit li {
min-height: 56px !important;
padding: 10px 12px !important;
}

.stellar-wallets-kit p {
font-size: 15px !important;
line-height: 1.25 !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}

.stellar-wallets-kit small {
min-height: 34px !important;
padding: 7px 10px !important;
border-radius: 10px !important;
white-space: nowrap !important;
}

.stellar-wallets-kit button {
min-width: 44px !important;
min-height: 44px !important;
}

/* Accessibility: Skip to main content link */
.skip-link {
position: absolute !important;
left: -9999px !important;
top: auto !important;
width: 1px !important;
height: 1px !important;
overflow: hidden !important;
z-index: -999 !important;
}

.skip-link:focus {
position: fixed !important;
left: 16px !important;
top: 16px !important;
width: auto !important;
height: auto !important;
padding: 12px 24px !important;
background: #ff7a6b !important;
color: #fff !important;
font-weight: bold !important;
font-size: 15px !important;
border-radius: 8px !important;
text-decoration: none !important;
z-index: 99999 !important;
box-shadow: 0 8px 32px rgba(255, 122, 107, 0.4) !important;
outline: 3px solid #234b4e !important;
}
/* App.css — modular aggregator.
Global tokens + animations + base styles are imported from src/styles/.
Upstream PWA/i18n styles are now in global.css/animations.css.
Page-specific styles live in src/pages/*.css and component CSS.
*/

@import "./styles/theme.css";
@import "./styles/animations.css";
@import "./styles/global.css";
Loading