From a609c31a57f6ff13f5f851c0b77c971f9ad41285 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Fri, 13 Apr 2018 16:47:35 -0400 Subject: [PATCH] Style attachment section headers --- .../conversation/media-gallery/AttachmentListSection.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ts/components/conversation/media-gallery/AttachmentListSection.tsx b/ts/components/conversation/media-gallery/AttachmentListSection.tsx index 1be2b0f9a..cefa30805 100644 --- a/ts/components/conversation/media-gallery/AttachmentListSection.tsx +++ b/ts/components/conversation/media-gallery/AttachmentListSection.tsx @@ -12,7 +12,11 @@ const styles = { container: { width: '100%', }, - header: {}, + header: { + fontSize: 14, + fontWeight: 'normal', + lineHeight: '28px', + } as React.CSSProperties, itemContainer: { display: 'flex', flexDirection: 'row', @@ -63,7 +67,7 @@ export class AttachmentListSection extends React.Component { return (
-
{header}
+

{header}

{this.renderItems()}
);