Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.

Commit bf7f416

Browse files
committed
Merge branch 'main' into develop
* main: Release/1.3.0 (#266)
2 parents ba627b9 + faf10af commit bf7f416

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mentolabs-governance-ui",
3-
"version": "1.0.2",
3+
"version": "1.3.0",
44
"private": true,
55
"engines": {
66
"node": ">=20",

src/components/proposal-summary/proposal-summary.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const ContractData = ({
9494
return (
9595
<div className="flex flex-col items-center justify-center gap-1 text-center md:gap-2">
9696
<div className="text-[22px] font-medium md:text-[32px]">{value}</div>
97-
<div className="text-[18px]">{label}</div>
97+
<div className="max-w-32 text-[18px]">{label}</div>
9898
</div>
9999
);
100100
};

src/components/proposals-list/proposals-list.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface ProposalsListProps extends BaseComponentProps {}
1717
export const ProposalsListComponent = ({ className }: ProposalsListProps) => {
1818
return (
1919
<div className={`w-full font-fg ${className}`}>
20-
<h2 className="pb-[32px] pt-[30px] text-center text-[32px] font-medium md:pt-[56px]">
20+
<h2 className="pb-[32px] pt-[30px] text-center text-[22px] font-medium md:pb-[34px] md:pt-[76px]">
2121
Proposals
2222
</h2>
2323
<ProposalsTable />

0 commit comments

Comments
 (0)