show memory size

This commit is contained in:
Klemek
2023-08-29 16:44:27 +02:00
parent e865b614e6
commit cabb46d33c
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -51,6 +51,14 @@
<td><input placeholder="answer" v-bind:value="newRow[1]" v-on:change="newRow[1] = $event.target.value"></td> <td><input placeholder="answer" v-bind:value="newRow[1]" v-on:change="newRow[1] = $event.target.value"></td>
<td><button v-on:click="addRow">Add</button></td> <td><button v-on:click="addRow">Add</button></td>
</tr> </tr>
<tr>
<td colspan="2">
<progress max="2048" v-bind:value="urlLength"></progress>
</td>
<td>
{{ urlLength }} / 2048
</td>
</tr>
</table> </table>
<hr> <hr>
<small><a href="https://twitter.com/_klemek" target="_blank">@Klemek</a> - <a href="https://github.com/Klemek/memory-helper" target="_blank">Github Repository</a> - {{currentYear}}</small> <small><a href="https://twitter.com/_klemek" target="_blank">@Klemek</a> - <a href="https://github.com/Klemek/memory-helper" target="_blank">Github Repository</a> - {{currentYear}}</small>
+1 -1
View File
@@ -134,7 +134,7 @@ table.config td {
max-width: 30%; max-width: 30%;
} }
table.config td button { table.config td button, table.config td progress {
width: 100%; width: 100%;
} }