2023-07-15 15:03:08 +07:00
|
|
|
<template>
|
|
|
|
|
2023-08-21 18:37:34 +07:00
|
|
|
<v-sheet class="d-flex justify-center">
|
|
|
|
|
|
|
|
<v-sheet class="ma-2 pa-4 mb-auto">
|
|
|
|
|
|
|
|
<v-row class="ma-2" justify="centered">
|
|
|
|
|
|
|
|
<v-img cover src="../../icons/LittleLines.svg"></v-img>
|
|
|
|
</v-row>
|
|
|
|
|
|
|
|
<v-list-item
|
|
|
|
center
|
|
|
|
class="text-black"
|
|
|
|
title="Little Lines"
|
|
|
|
subtitle="openKMITL Community"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
</v-list-item>
|
|
|
|
<a class="versionbutton">DATE-VERSION</a>
|
|
|
|
|
|
|
|
</v-sheet>
|
|
|
|
</v-sheet>
|
2023-07-15 15:03:08 +07:00
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
2023-08-21 18:37:34 +07:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.versionbutton {
|
|
|
|
background-color: rgba(255, 190, 111, 0.25);;
|
|
|
|
color: #C64600;
|
|
|
|
border-radius:50px;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-right: 15px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|