Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Oct 28, 2024
1 parent d5d3781 commit 2c9a337
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/PageSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function PageSection({
}: Props) {
const [open, setOpen] = React.useState(defaultOpen)
return (
<Stack as="section" pl={3} pr={[3, 3, 3]} pt={3} pb={4} gap={3}>
<Stack as="section" padding={2} marginLeft={[0, 0, 0, 1, 3]} marginRight={[0, 0, 0, 1, 3]} gap={3}>
{(title || titleAddition) && (
<Shelf justifyContent="space-between" as="header">
<Stack>
Expand Down
4 changes: 2 additions & 2 deletions centrifuge-app/src/pages/Loan/ExternalFinanceForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ export function ExternalFinanceForm({ loan, source }: { loan: ExternalLoan; sour
{source === 'reserve' ? (
<InlineFeedback status="default">
<Text color="statusDefault">
Stablecoins will be transferred to the specified withdrawal addresses, on the specified networks. A
delay until the transfer is completed is to be expected.
Stablecoins will be transferred to the designated withdrawal addresses on the specified networks. A
delay may occur before the transfer is completed.
</Text>
</InlineFeedback>
) : (
Expand Down
4 changes: 2 additions & 2 deletions centrifuge-app/src/pages/Loan/FinanceForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ function InternalFinanceForm({ loan, source }: { loan: LoanType; source: string
{source === 'reserve' ? (
<InlineFeedback status="default">
<Text color="statusDefault">
Stablecoins will be transferred to the specified withdrawal addresses, on the specified networks. A
delay until the transfer is completed is to be expected.
Stablecoins will be transferred to the designated withdrawal addresses on the specified networks. A
delay may occur before the transfer is completed.
</Text>
</InlineFeedback>
) : source === 'other' ? (
Expand Down
4 changes: 2 additions & 2 deletions centrifuge-app/src/pages/Loan/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const StyledRouterLinkButton = styled(RouterLinkButton)`
margin-left: 30px;
> span {
width: 35px;
width: 34px;
}
&:hover {
background-color: ${({ theme }) => theme.colors.backgroundTertiary};
Expand Down Expand Up @@ -169,7 +169,7 @@ function Loan() {

return (
<Stack>
<Box display="flex" alignItems="center" width="50%" justifyContent="space-between" mt={15} mb={24}>
<Box display="flex" alignItems="center" width="55%" justifyContent="space-between" mt={15} mb={24}>
<StyledRouterLinkButton to={`${basePath}/${poolId}/assets`} small icon={IconArrowLeft} variant="tertiary" />
<Box display="flex" alignItems="center">
<Text variant="heading1" style={{ marginRight: 8 }}>
Expand Down

0 comments on commit 2c9a337

Please sign in to comment.