source: petify-frontend/src/App.vue@ 92e7c7a

Last change on this file since 92e7c7a was 92e7c7a, checked in by veronika-ils <ilioskaveronika@…>, 11 hours ago

Petify fullstack project

  • Property mode set to 100644
File size: 433 bytes
Line 
1<script setup lang="ts">
2import TopNav from '@/components/TopNav.vue'
3</script>
4
5<template>
6 <div class="app">
7 <TopNav />
8 <RouterView />
9 </div>
10</template>
11
12<style>
13html,
14body,
15#app {
16 height: 100%;
17}
18
19body {
20 background:
21 radial-gradient(900px 600px at 15% 0%, rgba(249, 115, 22, 0.14), transparent 60%),
22 radial-gradient(900px 600px at 85% 10%, rgba(249, 115, 22, 0.1), transparent 55%),
23 #f7f7fb;
24}
25</style>
Note: See TracBrowser for help on using the repository browser.