Description text is same size as TextColumn

Hi,

Im under the impression that a description text should be smaller than the text of the TextColumn component. Am I right? Because in my app it renders at the same size: text-sm. Am I doing something wrong?

TextColumn::make('publish_at')
    ->since()
    ->description(function(Article $article): string {
        if (!$article->publish_at) {
            return '';
        }
        
        if ($article->publish_at->isFuture()) {
            return 'Publish on ' . $article->publish_at->format('d M Y - H:m');
        }
        
        if ($article->publish_at->isPast()) {
            return 'Published on ' . $article->publish_at->format('d M Y - H:m');
        }
        
        return '';
    })
Screenshot_2024-01-03_at_17.59.50.png
Was this page helpful?