(Game): Help popup

Help popup to learn how to play
This commit is contained in:
2024-02-12 19:22:03 +01:00
parent 9033ef8f68
commit 8a669324c9
6 changed files with 195 additions and 1 deletions
+21
View File
@@ -17,4 +17,25 @@
width: 75px;
}
}
& > .helpButton {
display: grid;
grid-template-columns: 20px 1fr;
align-items: center;
gap: 5px;
padding: 10px 15px;
border: 2px solid #f39440;
border-radius: 5px;
background-color: #ffdccb;
font-size: 0.9em;
font-weight: 600;
color: #f39440;
opacity: 0.7;
cursor: pointer;
transition: opacity 0.3s ease;
&:hover {
opacity: 1;
}
}
}