mirror of
https://github.com/kevin-DL/team-management.git
synced 2026-01-11 18:54:33 +00:00
25 lines
378 B
Vue
25 lines
378 B
Vue
<template>
|
|
<div class="h-screen w-screen bg-primary">
|
|
<div class="w-full md:w-1/2 bg-secondary ">
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
|
|
export default Vue.extend({})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
/* Sample `apply` at-rules with Tailwind CSS
|
|
.container {
|
|
@apply min-h-screen flex justify-center items-center text-center mx-auto;
|
|
}
|
|
*/
|
|
</style>
|