Skip to content

Commit

Permalink
SOV-3466: Fix current parameter value mobile styles (#715)
Browse files Browse the repository at this point in the history
* Fix current parameter value mobile styles

* chore: add changeset

---------

Co-authored-by: soulBit <[email protected]>
  • Loading branch information
tiltom and soulBit authored Dec 14, 2023
1 parent 201dc43 commit dfbdc97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/fifty-cycles-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"frontend": patch
---

SOV-3466: Fix current Proposal parameter value mobile styles
Original file line number Diff line number Diff line change
Expand Up @@ -351,11 +351,12 @@ export const Parameter: FC<ParameterProps> = ({ parameter }) => {
<div className="gap-3 flex flex-col">{customParameterSection}</div>
) : (
<div className="gap-6 flex flex-col mt-6">
<SimpleTable className="min-h-10 justify-center">
<SimpleTable className="min-h-10 justify-center px-1.5 sm:px-3">
<SimpleTableRow
label={t(translations.proposalPage.currentValue)}
value={parameterValue}
className="flex justify-between"
className="flex flex-col sm:flex-row justify-between"
valueClassName="text-start sm:text-right mt-2 sm:mt-0"
/>
</SimpleTable>

Expand Down

0 comments on commit dfbdc97

Please sign in to comment.