mirror of
https://github.com/dergigi/boris.git
synced 2025-12-22 17:14:20 +01:00
style: improve publishing date display
- Use shorter date format (MMM d, yyyy instead of MMMM d, yyyy) - Add subtle styling with reduced opacity and smaller font - Make calendar icon smaller and more muted - Style overlay version for hero images with subtle white text
This commit is contained in:
@@ -22,7 +22,7 @@ const ReaderHeader: React.FC<ReaderHeaderProps> = ({
|
||||
hasHighlights,
|
||||
highlightCount
|
||||
}) => {
|
||||
const formattedDate = published ? format(new Date(published * 1000), 'MMMM d, yyyy') : null
|
||||
const formattedDate = published ? format(new Date(published * 1000), 'MMM d, yyyy') : null
|
||||
if (image) {
|
||||
return (
|
||||
<div className="reader-hero-image">
|
||||
|
||||
Reference in New Issue
Block a user