Added basic webinterface design

This commit is contained in:
Leon Etienne (ubuntu wsl)
2020-09-28 01:53:26 +02:00
parent 1f13487fca
commit 01d52d1dce
29 changed files with 752 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div class="download-box">
<h2 class="no-dls-yet mt-2">No downloads yet...</h2>
</div>
</template>
<style lang="scss" scoped>
.download-box {
width: 100%;
min-height: 600px;
border-radius: 5px;
background-color: #fff5;
}
.no-dls-yet {
color: theme("colors.text-gray-1");
font-size: 34pt;
text-align: center;
}
</style>