css cleanup

This commit is contained in:
2025-08-29 21:57:03 -04:00
parent f38a5a69df
commit 90be478e9a
6 changed files with 88 additions and 64 deletions

View File

@@ -0,0 +1,17 @@
.hand {
height: 160px;
background: radial-gradient(var(--sweet-green), var(--dark-green));
min-width: 100px;
width: fit-content;
max-width: 90%;
border: 2px dashed var(--light);
border-radius: 12px;
margin-bottom: 50px;
padding: 10px;
overflow: scroll;
scrollbar-width: none;
display: flex;
gap: 5px;
}

View File

@@ -3,6 +3,8 @@ import type { Card as TCard, Hand as THand } from "@games/shared/cards";
import Card from "./Card";
import { Stylable } from "./toolbox";
import "./Hand.css";
export default ((props) => {
return (
<div class={"hand " + props.class} style={props.style}>