network_inventory/frontend/src/App.vue

51 lines
917 B
Vue
Raw Normal View History

2020-11-27 19:30:27 +01:00
<template>
2021-02-15 22:59:31 +01:00
<the-customers></the-customers>
<the-footer></the-footer>
2020-11-27 19:30:27 +01:00
</template>
<script>
import TheFooter from "./components/UI/TheFooter.vue";
2021-02-15 22:44:53 +01:00
import TheCustomers from "./components/customers/TheCustomers.vue";
2020-11-27 19:30:27 +01:00
export default {
2021-02-15 16:55:27 +01:00
components: {
TheFooter,
2021-02-15 22:44:53 +01:00
TheCustomers,
2021-02-15 16:55:27 +01:00
},
data() {
return {};
},
2021-01-25 21:00:08 +01:00
};
2020-11-27 19:30:27 +01:00
</script>
<style>
2021-02-15 22:59:31 +01:00
* {
box-sizing: border-box;
}
html {
2021-02-15 16:55:27 +01:00
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
2021-02-15 22:59:31 +01:00
.card {
margin: 2rem auto;
max-width: 40rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 2rem;
background-color: #ffffff;
}
button {
font: inherit;
border: 1px solid #0076bb;
background-color: #0076bb;
color: white;
cursor: pointer;
padding: 0.75rem 2rem;
border-radius: 30px;
}
</style>