ui tweaks. add FAQ section. move filters to submenu

This commit is contained in:
calli
2025-04-25 09:38:10 +03:00
parent a1f682e9fc
commit de49595f55
8 changed files with 234 additions and 130 deletions

View File

@@ -167,20 +167,20 @@ export const PlanetTableRow = ({
/>
{amount !== undefined && (
<Typography fontSize={theme.custom.smallText} style={{ marginLeft: "5px", flexShrink: 0 }}>
{amount}/h
{amount}
</Typography>
)}
</div>
);
}
return (
<div style={{ display: "flex", justifyContent: "space-between", width: "100%" }}>
<div style={{ display: "flex", alignItems: "center", justifyContent: "space-between", width: "100%" }}>
<Typography fontSize={theme.custom.smallText}>
{PI_TYPES_MAP[typeId].name}
</Typography>
{amount !== undefined && (
<Typography fontSize={theme.custom.smallText} style={{ marginLeft: "5px", flexShrink: 0 }}>
{amount}/h
{amount}
</Typography>
)}
</div>