Merge pull request #4622 from pangeachat/copilot/add-horizontal-padding-to-message
Add horizontal padding to promo codes message
This commit is contained in:
commit
bc2b5d27eb
1 changed files with 13 additions and 10 deletions
|
|
@ -199,17 +199,20 @@ class ChangeSubscription extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
if (kIsWeb)
|
||||
Row(
|
||||
spacing: 8.0,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const Icon(Icons.info_outlined),
|
||||
Flexible(
|
||||
child: Text(
|
||||
L10n.of(context).promoCodeInfo,
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
||||
child: Row(
|
||||
spacing: 8.0,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const Icon(Icons.info_outlined),
|
||||
Flexible(
|
||||
child: Text(
|
||||
L10n.of(context).promoCodeInfo,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 20.0),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue