diff options
| author | Haishan <[email protected]> | 2019-01-13 23:44:35 +0800 |
|---|---|---|
| committer | Haishan <[email protected]> | 2019-01-13 23:44:35 +0800 |
| commit | eb76f7c19485e6a69fbda46fca59e29c25f29f28 (patch) | |
| tree | f2de6b7dc92ee5f37bde94fefe807970afddc266 /src/components/Logs.js | |
| parent | 29048908df7cb4be642880f9fedba8766dbefa17 (diff) | |
style(logs): optimize logs placeholder container style
Diffstat (limited to 'src/components/Logs.js')
| -rw-r--r-- | src/components/Logs.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Logs.js b/src/components/Logs.js index 43f64a9..c781866 100644 --- a/src/components/Logs.js +++ b/src/components/Logs.js @@ -74,7 +74,10 @@ export default function Logs() { <ContentHeader title="Logs" /> <div ref={refLogsContainer} style={{ paddingBottom }}> {logs.length === 0 ? ( - <div className={s0.logPlaceholder}> + <div + className={s0.logPlaceholder} + style={{ height: containerHeight - paddingBottom }} + > <div className={s0.logPlaceholderIcon}> <Icon id={yacd.id} width={200} height={200} /> </div> |
