slight update to teminal

pull/1/head
Rob Stupay 7 years ago
parent c0c9f5d3dc
commit c4204bb397
  1. 37
      src/app/panels/terminal.js

@ -73,11 +73,8 @@ var css = csjs`
overflow-y : auto; overflow-y : auto;
font-family : monospace; font-family : monospace;
} }
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
.terminal_bg { .terminal_bg {
=======
.inner_terminal {
>>>>>>> bg image working BUT cannot create an instance of a contract
display : flex; display : flex;
flex-direction : column; flex-direction : column;
height : 100%; height : 100%;
@ -86,11 +83,7 @@ var css = csjs`
padding-bottom : 3px; padding-bottom : 3px;
overflow-y : auto; overflow-y : auto;
font-family : monospace; font-family : monospace;
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
background-image : ${styles.terminal.backgroundImage_Terminal}; background-image : ${styles.terminal.backgroundImage_Terminal};
=======
background-image : url(assets/img/remix_logo_white_512x512.svg);
>>>>>>> bg image working BUT cannot create an instance of a contract
opacity : 0.1; opacity : 0.1;
top : 15%; top : 15%;
left : 33%; left : 33%;
@ -101,33 +94,14 @@ var css = csjs`
background-repeat : no-repeat; background-repeat : no-repeat;
background-size : 45%; background-size : 45%;
} }
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
.terminal { .terminal {
=======
.terminal_content {
>>>>>>> bg image working BUT cannot create an instance of a contract
position: relative; position: relative;
position: relative; position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
} }
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
=======
.inner_terminal::after {
// content : "";
// background-image : url(assets/img/remix_logo_white_512x512.svg);
// opacity : 0.1;
// top : 15%;
// left : 33%;
// bottom : 0;
// right : 0;
// position : absolute;
// // z-index : -1;
// background-repeat : no-repeat;
// background-size : 45%;
}
>>>>>>> bg image working BUT cannot create an instance of a contract
.journal { .journal {
margin-top : auto; margin-top : auto;
font-family : monospace; font-family : monospace;
@ -318,17 +292,10 @@ class Terminal {
} }
self._view.term = yo` self._view.term = yo`
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
<div class=${css.terminal_container} onscroll=${throttle(reattach, 10)} onclick=${focusinput}> <div class=${css.terminal_container} onscroll=${throttle(reattach, 10)} onclick=${focusinput}>
<div class=${css.terminal_bg}> <div class=${css.terminal_bg}>
</div> </div>
<div class=${css.terminal}> <div class=${css.terminal}>
=======
<div class=${css.terminal} onscroll=${throttle(reattach, 10)} onclick=${focusinput}>
<div class=${css.inner_terminal}>
</div>
<div class=${css.terminal_content}>
>>>>>>> bg image working BUT cannot create an instance of a contract
${self._view.journal} ${self._view.journal}
${self._view.cli} ${self._view.cli}
</div> </div>

Loading…
Cancel
Save