Skip to content

Commit 5e2afc1

Browse files
committed
style(install-banner): match font sizes to resource items
Change install banner text sizing to match OpenShift-style resource items: - Title: 16px (matches .resource-name) - Subtitle: 14px IBM VGA 8x14 (matches .resource-cmd) - iOS instructions: 14px IBM VGA 8x14 for consistency Removes experimental pixel art wizard character.
1 parent 3171bd3 commit 5e2afc1

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

makeitwork.cloud/index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,13 +470,14 @@
470470
}
471471

472472
.install-banner-title {
473-
font-size: 1rem;
473+
font-size: 16px;
474474
font-weight: 500;
475475
color: var(--gold);
476476
}
477477

478478
.install-banner-subtitle {
479-
font-size: 0.85rem;
479+
font-family: "IBM VGA 8x14", monospace;
480+
font-size: 14px;
480481
color: var(--text-muted);
481482
}
482483

@@ -521,7 +522,8 @@
521522
/* iOS install instructions */
522523
.ios-instructions {
523524
display: none;
524-
font-size: 0.85rem;
525+
font-family: "IBM VGA 8x14", monospace;
526+
font-size: 14px;
525527
color: var(--text-muted);
526528
text-align: center;
527529
padding: 0.5rem;

0 commit comments

Comments
 (0)