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
74 changes: 48 additions & 26 deletions web/strategy-switch-console/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,18 +261,18 @@

.platform-strip {
display: grid;
grid-template-columns: repeat(4, minmax(140px, 1fr));
gap: 10px;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 8px;
}

.platform-button {
min-width: 0;
min-height: 92px;
min-height: 52px;
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
gap: 12px;
padding: 13px;
gap: 8px;
padding: 8px 10px;
border: 1px solid var(--line);
border-left: 4px solid var(--platform-color);
border-radius: 8px;
Expand Down Expand Up @@ -367,15 +367,15 @@
}

.mark {
width: 44px;
height: 44px;
width: 32px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 8px;
background: color-mix(in srgb, var(--platform-color) 12%, white);
color: var(--platform-color);
font-size: 13px;
font-size: 11px;
font-weight: 840;
transition: background 150ms ease, color 150ms ease;
}
Expand All @@ -392,11 +392,16 @@
}

.platform-copy strong {
font-size: 16px;
font-size: 13px;
line-height: 1.18;
overflow-wrap: anywhere;
}

.platform-strip .platform-copy span,
.platform-strip .platform-copy small {
display: none;
}

.platform-copy span {
color: var(--muted);
font-size: 12px;
Expand Down Expand Up @@ -832,9 +837,9 @@
}

.platform-strip {
grid-template-columns: repeat(4, minmax(160px, 1fr));
gap: 16px;
padding: 16px;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 8px;
padding: 10px 12px;
border: 1px solid rgba(210, 222, 232, 0.85);
border-radius: var(--radius-lg);
background: rgba(255, 255, 255, 0.74);
Expand All @@ -844,9 +849,9 @@

.platform-button {
position: relative;
min-height: 72px;
gap: 14px;
padding: 14px 46px 14px 14px;
min-height: 52px;
gap: 8px;
padding: 8px 28px 8px 8px;
border: 1px solid rgba(207, 218, 229, 0.9);
border-left: 1px solid rgba(207, 218, 229, 0.9);
border-radius: var(--radius-md);
Expand All @@ -873,25 +878,25 @@
content: "✓";
position: absolute;
top: 50%;
right: 16px;
width: 24px;
height: 24px;
right: 8px;
width: 18px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--platform-color);
color: #ffffff;
font-size: 14px;
font-size: 11px;
font-weight: 880;
transform: translateY(-50%);
box-shadow: 0 8px 18px color-mix(in srgb, var(--platform-color) 24%, transparent);
}

.mark {
width: 44px;
height: 44px;
border-radius: 12px;
width: 32px;
height: 32px;
border-radius: 10px;
background: color-mix(in srgb, var(--platform-color) 10%, #f7fafc);
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--platform-color) 10%, transparent);
}
Expand All @@ -903,7 +908,7 @@

.platform-copy strong {
color: #121a28;
font-size: 16px;
font-size: 13px;
letter-spacing: -0.015em;
}

Expand Down Expand Up @@ -1166,7 +1171,13 @@

@media (max-width: 820px) {
.platform-strip {
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 6px;
padding: 8px 10px;
}

.platform-copy strong {
font-size: 12px;
}

.switch-surface {
Expand Down Expand Up @@ -1213,8 +1224,19 @@
}

.platform-strip {
gap: 10px;
padding: 10px;
grid-template-columns: repeat(5, minmax(68px, 1fr));
gap: 6px;
padding: 8px;
overflow-x: auto;
}

.platform-button {
min-height: 48px;
padding-inline: 8px 24px;
}

.platform-copy strong {
font-size: 11px;
}

.mode-block,
Expand Down
2 changes: 1 addition & 1 deletion web/strategy-switch-console/page_asset.js

Large diffs are not rendered by default.

Loading