Skip to content

Commit

Permalink
fix page login layout
Browse files Browse the repository at this point in the history
  • Loading branch information
karenyov committed Apr 8, 2023
1 parent 4b89dba commit af4ff68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/DataTableBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import DataTable,{ TableColumn } from "react-data-table-component";

import classnames from "classnames";
interface Props {
columns: TableColumn<>[];
columns: TableColumn<any>[];
data: any[];
title?: string;
}
Expand Down
10 changes: 6 additions & 4 deletions src/pages/debt/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ export default function Debt() {
<CardBody>
<Stack>
<HStack justifyContent="space-between" mb={5}>
<Text as="b" fontSize="lg">
<Text as="b" fontSize="lg" color="primary.400">
Salário:{" "}
<Skeleton isLoaded={registerBase.salary != null} w="100%">
{new Intl.NumberFormat("pt-br", {
Expand Down Expand Up @@ -746,12 +746,14 @@ export default function Debt() {
<StatHelpText>
<MinusIcon mr={1} />
Saldo Atual
</StatHelpText>
</StatHelpText>
</Stat>

<Stat>
<StatLabel>Total outros valores</StatLabel>
<StatNumber>
<StatLabel color="primary.400">
Total outros valores
</StatLabel>
<StatNumber color="primary.400">
<Skeleton isLoaded={registerBase.others != null} w="90%">
{new Intl.NumberFormat("pt-br", {
style: "currency",
Expand Down

0 comments on commit af4ff68

Please sign in to comment.