1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

chore: styles fix

This commit is contained in:
2022-11-22 00:01:58 +05:00
parent b27d684145
commit b47e74a7e1
2 changed files with 4 additions and 13 deletions

View File

@@ -197,7 +197,10 @@ const SASjsEditor = ({
<StyledTabPanel value="log">
<div>
<h2>Log</h2>
<pre id="log" style={{ overflow: 'auto', height: '75vh' }}>
<pre
id="log"
style={{ overflow: 'auto', height: 'calc(100vh - 220px)' }}
>
{log}
</pre>
</div>

View File

@@ -25,15 +25,3 @@ code {
padding: '5px 10px';
margin-top: '10px';
}
.tree-item-label {
display: flex;
}
.tree-item-label.selected {
background: lightgoldenrodyellow;
}
.tree-item-label:hover {
background: lightgray;
}