diff options
author | Renard | 2019-09-13 12:30:11 -0300 |
---|---|---|
committer | Renard | 2019-09-13 12:30:11 -0300 |
commit | 1289267e5c2650765236631f089282f499b7b70c (patch) | |
tree | a05a79135ffe5700e5ba458f3d6a0f273b9841e1 /src/Post.js | |
parent | f68db07a9d5803c7b8881dbcb2f6fa4c6da47f73 (diff) | |
download | bai-client-1289267e5c2650765236631f089282f499b7b70c.tar.gz bai-client-1289267e5c2650765236631f089282f499b7b70c.tar.xz bai-client-1289267e5c2650765236631f089282f499b7b70c.zip |
Imagenes en Board.js
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} |