20 lines
361 B
Vue
20 lines
361 B
Vue
<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> |