20 lines
361 B
Vue
Raw Normal View History

2020-09-28 01:53:26 +02:00
<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>