update design
This commit is contained in:
parent
a63caca49d
commit
29d7fb924e
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@codex-storage/marketplace-ui-components",
|
||||
"version": "0.0.35",
|
||||
"version": "0.0.36",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@codex-storage/marketplace-ui-components",
|
||||
"version": "0.0.35",
|
||||
"version": "0.0.36",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"lucide-react": "^0.453.0"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/codex-storage/codex-marketplace-ui-components"
|
||||
},
|
||||
"version": "0.0.35",
|
||||
"version": "0.0.36",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"prepack": "npm run build",
|
||||
|
|
|
@ -138,9 +138,9 @@ export type RowProps = {
|
|||
className?: string;
|
||||
};
|
||||
|
||||
export function Row({ cells, className = "" }: RowProps) {
|
||||
export function Row({ cells, className = "", ...rest }: RowProps) {
|
||||
return (
|
||||
<tr className={className}>
|
||||
<tr {...rest} className={className}>
|
||||
{cells.map((Cell, index) => (
|
||||
<Fragment key={index}>{Cell}</Fragment>
|
||||
))}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
th {
|
||||
color: var(--codex-color-light);
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
text-transform: capitalize;
|
||||
font-size: 0.9rem;
|
||||
text-align: left;
|
||||
height: 36px;
|
||||
|
@ -78,11 +78,11 @@
|
|||
height: 64px;
|
||||
box-sizing: border-box;
|
||||
background-color: #232323;
|
||||
padding: 0 16px;
|
||||
padding: 0 12px;
|
||||
font-family: Inter;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
line-height: 20px;
|
||||
line-height: 16px;
|
||||
letter-spacing: -0.006em;
|
||||
|
||||
&:first-child {
|
||||
|
|
Loading…
Reference in New Issue