diff options
Diffstat (limited to 'src/Post.js')
-rw-r--r-- | src/Post.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Post.js b/src/Post.js index 4923b81..054bc58 100644 --- a/src/Post.js +++ b/src/Post.js @@ -22,7 +22,7 @@ const Post = ({ index, post, locked, dir }) => { <Segment.Group horizontal> {post.file !== "" ? <Segment compact className="imageSegment"> - <Label attached='bottom'>{post.file} {post.image_width}x{post.image_height} {filesize(post.file_size, { bits: true })}</Label> + <Label size="small" attached='bottom'>{post.file} {post.image_width}x{post.image_height} {filesize(post.file_size, { bits: true })}</Label> <Image fluid src={`https://bienvenidoainternet.org/${dir}/thumb/${post.thumb}`} /> </Segment> : null} |