it's in the fucking middle
continuous-integration/drone Build is passing Details

This commit is contained in:
Torma Kristóf 2022-05-21 22:48:49 +02:00
parent 39b65a13d3
commit b9b39de41c
3 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<title>Hanyadik het van?</title> <title>Hanyadik het van?</title>
</head> </head>
<body> <body>
<div id="app"></div> <div class="w-100 p-3" id="app"></div>
<script type="module" src="/src/main.ts"></script> <script type="module" src="/src/main.ts"></script>
</body> </body>
</html> </html>

View File

@ -18,6 +18,10 @@ import WeekNumber from './components/WeekNumber.vue'
background-color: var(--bs-dark); background-color: var(--bs-dark);
} }
main {
left: 50%;
}
#app { #app {
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;

View File

@ -30,7 +30,7 @@ export default defineComponent({
<template> <template>
<div> <div>
<h1> <h1 class="text-center">
{{weeknumber}} {{weeknumber}}
</h1> </h1>
</div> </div>
@ -40,6 +40,5 @@ export default defineComponent({
h1 { h1 {
font-weight: 500; font-weight: 500;
font-size: 5rem; font-size: 5rem;
top: -10px;
} }
</style> </style>