diff options
| author | Haishan <[email protected]> | 2019-07-06 21:39:52 +0800 |
|---|---|---|
| committer | Haishan <[email protected]> | 2019-07-06 21:48:22 +0800 |
| commit | 515f7376a85135db77c330fb097214bd8a990cc8 (patch) | |
| tree | a24012e81ed940196439355bc5c5fef0fa6eb9fc /src/components | |
| parent | d67eb1b43150eb87325d4c5eaae8101ea7ac0ee7 (diff) | |
fix(proxies): test latency FAB was covered by proxy card
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Proxies.js | 6 | ||||
| -rw-r--r-- | src/components/Proxies.module.css | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/components/Proxies.js b/src/components/Proxies.js index dc37322..c66ed83 100644 --- a/src/components/Proxies.js +++ b/src/components/Proxies.js @@ -35,9 +35,9 @@ export default function Proxies() { const { groupNames } = useStoreState(mapStateToProps); return ( - <div> + <> <ContentHeader title="Proxies" /> - <div> + <div className={s0.body}> <div className={s0.fabgrp}> <Button label="Test Latency" onClick={requestDelayAll} /> </div> @@ -49,6 +49,6 @@ export default function Proxies() { ); })} </div> - </div> + </> ); } diff --git a/src/components/Proxies.module.css b/src/components/Proxies.module.css index 8be48ce..9565970 100644 --- a/src/components/Proxies.module.css +++ b/src/components/Proxies.module.css @@ -1,4 +1,5 @@ -.root { +.body { + padding-bottom: 50px; } .group { @@ -7,6 +8,7 @@ .fabgrp { position: fixed; + z-index: 1; right: 20px; bottom: 20px; } |
