@ -17,7 +17,6 @@ body {
margin: 0;
padding: 0;
color: #333;
height: 100vh;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: rgba(255,255,255,0);
@ -85,9 +85,11 @@
}
.search {
height: 55px;
position: absolute;
padding: 2px 5px;
bottom: 20px;
border-top: 0.5px solid #ccc;
width: calc(100% - 40px);
padding: 10px 20px;
border-top: 1px solid $darkestgrey;
.input {
display: inline-block;
@ -111,10 +113,10 @@
.text {
width: 90%;
width: calc(95% - 20px);
background: transparent;
outline: 0;
padding: 0 5px;
padding: 0 10px;
border: 0;
border-radius: 0;
height: 50px;
@ -70,7 +70,7 @@ class Activity extends Component {
if (!balance.channelBalance || !balance.walletBalance) { return <LoadingBolt /> }
return (
<div style={{ height: '100%' }}>
<div>
<Modal
modalType={modal.modalType}
modalProps={modal.modalProps}
@ -78,7 +78,7 @@
background: $spaceblue;
transition: opacity 0.25s;
padding-bottom: 50px;
height: 100%;
min-height: 100vh;
overflow-y: scroll;
padding-top: 20px;
@ -41,7 +41,7 @@ class App extends Component {
if (!currentTicker) { return <LoadingBolt /> }
<div className={styles.titleBar} />
<GlobalError error={error} clearError={clearError} />
<ModalRoot
@ -3,7 +3,6 @@
.content {
position: relative;
width: 80%;
vertical-align: top;