Skip to content

Commit ab2a091

Browse files
committed
set-status: Change the text-input row's end margin from 10px to 8px
As Chris mentioned in #1769 description: "Change the text-input row's end margin from 10px to 8px, to match the 8px end margin on the status suggestions (I know this goes against the Figma but I'd prefer consistency 🙂)"
1 parent 802aa9a commit ab2a091

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/widgets/set_status.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,10 @@ class _SetStatusPageState extends State<SetStatusPage> {
189189
// In Figma design, this is 16px, but we compensate for that in
190190
// the icon button below.
191191
start: 8,
192-
top: 8, end: 10,
192+
top: 8,
193+
// In Figma design, this is 10px, but to be consistent with other
194+
// page content, we use 8px.
195+
end: 8,
193196
// In Figma design, this is 4px, be we compensate for that in
194197
// [SingleChildScrollView.padding] below.
195198
bottom: 0),

0 commit comments

Comments
 (0)