79832ed818
HelpModal component shows game setup and scoring rules in a scrollable overlay, triggered by a ? button top-right on Player Setup and Enter Scores. Enter Scores also gets a ← back button top-left that returns to the scoresheet without saving. PageFrame gains a headerActionLeft slot to support the left-side button. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
337 B
CSS
22 lines
337 B
CSS
.helpBtn {
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
min-height: unset;
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: #aaa;
|
|
line-height: 1;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.card {
|
|
position: fixed;
|
|
inset: 1rem;
|
|
border: 2px solid black;
|
|
border-radius: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|