pull/2072/head^2
lianahus 3 years ago committed by yann300
parent de2f10ba09
commit c4068ce358
  1. 3
      libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
  2. 2
      libs/remix-ui/terminal/src/lib/terminalWelcome.tsx

@ -53,6 +53,9 @@ element.style {
.remix_ui_terminal_block > pre {
max-height : 200px;
}
.remix_ui_terminal_welcome {
font-weight: bold;
}
.remix_ui_terminal_cli {
white-space : nowrap;
line-height : 1.7em;

@ -3,7 +3,7 @@ import React from 'react' // eslint-disable-line
const TerminalWelcomeMessage = ({ packageJson }) => {
return (
<div className="remix_ui_terminal_block px-4 " data-id="block_null">
<div> - Welcome to Remix {packageJson} - </div><br />
<div className="remix_ui_terminal_welcome"> Welcome to Remix {packageJson} </div><br />
<div>You can use this terminal to: </div>
<ul className='ml-0 mr-4'>
<li>Check transactions details and start debugging.</li>

Loading…
Cancel
Save