Fix #42
This commit is contained in:
parent
58497a6b9f
commit
3024a19b69
2 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ function App() {
|
|||
|
||||
<button
|
||||
type="button"
|
||||
className="mx-auto mt-8 flex items-center px-2.5 py-1.5 border border-transparent text-xs font-medium rounded text-indigo-700 bg-indigo-100 hover:bg-indigo-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
|
||||
className="mx-auto mt-8 flex items-center px-2.5 py-1.5 border border-transparent text-xs font-medium rounded text-indigo-700 bg-indigo-100 hover:bg-indigo-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 select-none"
|
||||
onClick={() => setIsAboutModalOpen(true)}
|
||||
>
|
||||
About this game
|
||||
|
|
|
@ -19,7 +19,7 @@ export const Key = ({
|
|||
onClick,
|
||||
}: Props) => {
|
||||
const classes = classnames(
|
||||
'flex items-center justify-center rounded mx-0.5 text-xs font-bold cursor-pointer',
|
||||
'flex items-center justify-center rounded mx-0.5 text-xs font-bold cursor-pointer select-none',
|
||||
{
|
||||
'bg-slate-200 hover:bg-slate-300 active:bg-slate-400': !status,
|
||||
'bg-slate-400 text-white': status === 'absent',
|
||||
|
|
Loading…
Add table
Reference in a new issue