aboutsummaryrefslogtreecommitdiff
path: root/src/mobile/MobileInterface.tsx
diff options
context:
space:
mode:
authorgeireann <60007097+geireann@users.noreply.github.com>2020-06-17 19:04:45 +0800
committergeireann <60007097+geireann@users.noreply.github.com>2020-06-17 19:04:45 +0800
commit3ccc8e92682bfa257ef2052513b1826b811f6881 (patch)
treeb3352f1007aa9f3d60937dcca1ba677743e5a1a1 /src/mobile/MobileInterface.tsx
parent0a60a9861c21efc95cb8f98b44b1ee02c5ebda02 (diff)
long sidebar menu item fixes
Diffstat (limited to 'src/mobile/MobileInterface.tsx')
-rw-r--r--src/mobile/MobileInterface.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mobile/MobileInterface.tsx b/src/mobile/MobileInterface.tsx
index 68fb8b28f..5acdc1dea 100644
--- a/src/mobile/MobileInterface.tsx
+++ b/src/mobile/MobileInterface.tsx
@@ -370,8 +370,9 @@ export class MobileInterface extends React.Component {
<div
className="item"
key={index}
- onClick={() => this.handleClick(doc)}>{doc.title}
- <div className="type">{doc.type}</div>
+ onClick={() => this.handleClick(doc)}>
+ <div className="item-title"> {doc.title} </div>
+ <div className="item-type">{doc.type}</div>
<FontAwesomeIcon className="right" icon="angle-right" size="lg" />
</div>);
}