ba83b319b8
(cherry picked from commit 9be02961277e990f8ded19106532f9c788eb1d7e)
19 lines
657 B
Dart
19 lines
657 B
Dart
|
|
import 'package:core/presentation/extensions/color_extension.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class QuotasBannerStyles {
|
|
static const double verticalPadding = 8;
|
|
static const double horizontalPadding = 16;
|
|
static const double iconPadding = 16;
|
|
static const double iconSize = 32;
|
|
static const double titleTextSize = 17;
|
|
static const double messageTextSize = 15;
|
|
static const double space = 4;
|
|
static const double borderRadius = 12;
|
|
|
|
static const Color messageTextColor = AppColor.colorLabelQuotas;
|
|
|
|
static const FontWeight titleFontWeight = FontWeight.w700;
|
|
static const FontWeight messageFontWeight = FontWeight.w400;
|
|
} |