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

add skip db button

This commit is contained in:
lana-k
2020-10-20 15:37:41 +02:00
parent 3e5e4b29c1
commit d132127143

View File

@@ -16,6 +16,9 @@
</div> </div>
</label> </label>
<div id="error" class="error"></div> <div id="error" class="error"></div>
<button id ="skip" class="secondary" @click="$router.push('/editor')">
Skip database connection for now
</button>
</div> </div>
</template> </template>
@@ -98,17 +101,21 @@ label {
border-radius: var(--border-radius-big); border-radius: var(--border-radius-big);
} }
#drop-area { #drop-area {
width: 231px; width: 628px;
height: 153px; height: 490px;
background-color: var(--color-bg-light-3); background-color: var(--color-bg-light-3);
border-radius: var(--border-radius-big); border-radius: var(--border-radius-big);
color: var(--color-text-base); color: var(--color-text-base);
font-size: 13px; font-size: 13px;
padding: 44px 15px; padding: 200px 144px;
text-align: center; text-align: center;
box-sizing: border-box; box-sizing: border-box;
} }
input { input {
display: none; display: none;
} }
#skip {
position: absolute;
bottom: 50px;
}
</style> </style>