🎨 UI update, moved POST request parameter section to Request section

This commit is contained in:
Liyas Thomas
2019-09-20 18:34:42 +05:30
parent e764df0687
commit df8d176a34
9 changed files with 92 additions and 88 deletions

View File

@@ -32,7 +32,7 @@
<span v-if="communication.log">
<span v-for="(logEntry, index) in communication.log" :style="{ color: logEntry.color }" :key="index">@ {{ logEntry.ts }} {{ getSourcePrefix(logEntry.source) }} {{ logEntry.payload }}</span>
</span>
<span v-else>(Waiting for connection...)</span>
<span v-else>(waiting for connection)</span>
</div>
</li>
</ul>
@@ -64,14 +64,13 @@
padding: 8px 16px;
width: calc(100% - 8px);
border-radius: 8px;
background-color: var(--brd-color);
background-color: var(--bg-dark-color);
color: var(--fg-color);
height: 256px;
overflow: auto;
&,
span {
font-weight: 700;
font-size: 18px;
font-family: monospace;
}