1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

#115 add messages

This commit is contained in:
lana-k
2023-12-27 23:00:05 +01:00
parent b17040d3ef
commit f58b62eb0c
2 changed files with 26 additions and 4 deletions

View File

@@ -17,6 +17,9 @@
v-show="selectedCell"
:cellValue="selectedCell ? selectedCell.innerText : ''"
/>
<div v-show="!selectedCell" class="table-preview">
No cell selected to view
</div>
</div>
</template>
</component>
@@ -314,6 +317,7 @@ export default {
height: 100%;
width: 100%;
background-color: var(--color-white);
position: relative;
}
.table-preview {
@@ -323,6 +327,7 @@ export default {
transform: translate(-50%, -50%);
color: var(--color-text-base);
font-size: 13px;
text-align: center;
}
.result-in-progress {