styles property

  1. @css
List<StyleRule> get styles

Implementation

@css
static List<StyleRule> get styles => [
  css('.postbreak', [
    css('&').styles(
      margin: Margin.only(top: 3.rem, bottom: 3.rem),
      display: Display.flex,
      justifyContent: JustifyContent.center,
      gap: Gap.column(1.25.rem),
    ),
    css(
      'span',
    ).styles(width: 4.px, height: 4.px, backgroundColor: ContentColors.headings, radius: BorderRadius.circular(4.px)),
  ]),
];