Skip to content

Commit 3e96f3b

Browse files
committed
set-status: Make the horizontal padding consistent for page body
1 parent 856df7d commit 3e96f3b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

lib/widgets/set_status.dart

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,11 @@ class _SetStatusPageState extends State<SetStatusPage> {
185185
),
186186
body: SafeArea(
187187
bottom: false,
188+
minimum: EdgeInsets.symmetric(horizontal: 8),
188189
child: Column(children: [
189190
Padding(
190191
padding: const EdgeInsetsDirectional.only(
191-
// In Figma design, this is 16px, but we compensate for that in
192-
// the icon button below.
193-
start: 8,
194-
top: 8, end: 10,
192+
top: 8,
195193
// In Figma design, this is 4px, be we compensate for that in
196194
// [SingleChildScrollView.padding] below.
197195
bottom: 0),
@@ -326,7 +324,7 @@ class StatusSuggestionsListEntry extends StatelessWidget {
326324
: Colors.transparent,
327325
),
328326
child: Padding(
329-
padding: EdgeInsets.symmetric(vertical: 7, horizontal: 16),
327+
padding: EdgeInsets.symmetric(vertical: 7, horizontal: 8),
330328
child: Row(
331329
spacing: 8,
332330
children: [

0 commit comments

Comments
 (0)