diff --git a/index.html b/index.html
index 3230a9a..949b6a9 100644
--- a/index.html
+++ b/index.html
@@ -207,6 +207,19 @@
color: var(--color-text);
}
+ .help {
+ bottom: 0;
+ color: var(--color-text-subtle);
+ display: none;
+ padding: var(--space-1) var(--space-2);
+ position: fixed;
+ right: 0;
+ }
+
+ .readme {
+ color: var(--color-text);
+ }
+
@media (min-width: 500px) {
.commands {
grid-template-columns: repeat(2, 1fr);
@@ -217,6 +230,10 @@
.commands {
grid-template-columns: repeat(3, 1fr);
}
+
+ .help {
+ display: block;
+ }
}
@media (min-width: 900px) {
@@ -233,6 +250,15 @@