Expanded(child: Padding(
              padding: const EdgeInsets.symmetric(vertical: 4),
              child: Text.rich(
                style: TextStyle(
                  fontSize: 17,
                  height: (20 / 17),
                  // TODO(design) check if this is the right variable
                  color: designVariables.labelMenuButton,
                ),
                maxLines: 2,
                overflow: TextOverflow.ellipsis,
                channelTopicLabelSpan(
                  context: context,
                  channelId: streamId,
                  topic: topic,
                  fontSize: 17,
                  color: designVariables.labelMenuButton,
                )))),