Change h tags to p with pt

This commit is contained in:
Tim Zieger 2020-06-01 11:58:22 +02:00
parent e2c698fd08
commit 7954bf7c04
6 changed files with 22 additions and 21 deletions

View File

@ -1,7 +1,7 @@
<template > <template >
<v-container id = "createAccountListen"> <v-container id = "createAccountListen">
<v-card align-center> <v-card align-center>
<h3 class="text-center display-2 logowhite--text">Details</h3> <p class="text-center logowhite--text" style="font-size:30pt">Details</p>
<v-form> <v-form>
<v-text-field <v-text-field

View File

@ -1,7 +1,7 @@
<template > <template >
<v-container id="createRecordListen"> <v-container id="createRecordListen">
<v-card align-center> <v-card align-center>
<h3 class="text-center display-2 logowhite--text">Details</h3> <p class="text-center logowhite--text" style="font-size:30pt">Details</p>
<v-row> <v-row>
<v-col cols="6"> <v-col cols="6">

View File

@ -2,13 +2,13 @@
<v-container id = "editAccountListen"> <v-container id = "editAccountListen">
<v-card align-center> <v-card align-center>
<div class="text-center ma-3"> <div class="text-center ma-3">
<h2 class="text-center display-2 logowhite--text">Account to edit:</h2> <p class="text-center logowhite--text" style="font-size:30pt">Account to edit:</p>
<h3 class="text-center display-2 logowhite--text">{{name}}</h3> <p class="text-center logowhite--text" style="font-size:30pt">{{name}}</p>
</div> </div>
</v-card> </v-card>
<v-card align-center> <v-card align-center>
<h3 class="text-center display-2 logowhite--text">Details</h3> <p class="text-center logowhite--text" style="font-size:30pt">Details</p>
<v-form> <v-form>
<v-text-field <v-text-field

View File

@ -1,7 +1,7 @@
<template > <template >
<v-container id="editRecordListen"> <v-container id="editRecordListen">
<v-card align-center> <v-card align-center>
<h3 class="text-center display-2 logowhite--text">Details</h3> <p class="text-center logowhite--text" style="font-size:30pt">Details</p>
<v-col cols="6"> <v-col cols="6">
<v-select <v-select

View File

@ -2,14 +2,14 @@
<v-container> <v-container>
<v-card align-center> <v-card align-center>
<div class="text-center ma-3"> <div class="text-center ma-3">
<h2 class="text-center display-2 logowhite--text">User to edit:</h2> <p class="text-center logowhite--text" style="font-size:30pt">User to edit:</p>
<h3 class="text-center display-2 logowhite--text">{{username}}</h3> <p class="text-center logowhite--text" style="font-size:30pt">{{username}}</p>
</div> </div>
</v-card> </v-card>
<v-card align-center> <v-card align-center>
<h3 class="text-center display-2 logowhite--text">User Information</h3> <p class="text-center logowhite--text" style="font-size:30pt">User Information</p>
<v-form> <v-form>
<v-text-field <v-text-field
@ -36,7 +36,7 @@
<p id="noudata"></p> <p id="noudata"></p>
</v-card> </v-card>
<v-card align-center> <v-card align-center>
<h3 class="text-center display-2 logowhite--text">Location</h3> <p class="text-center logowhite--text" style="font-size:30pt">Location</p>
<v-form> <v-form>
<v-text-field <v-text-field

View File

@ -3,28 +3,29 @@
<v-row v-if="loggedIn == 'true'"> <v-row v-if="loggedIn == 'true'">
<v-col cols="6"> <v-col cols="6">
<v-card class="pa-3"> <v-card class="pa-3">
<h1>Username: {{username}}</h1> <p style="font-size:30pt">User Information</p>
<h2>Firstname: {{firstname}}</h2> <p style="font-size:15pt"> Username: {{username}}</p>
<h2>Lastname: {{lastname}}</h2> <p style="font-size:15pt">Firstname: {{firstname}}</p>
<p style="font-size:15pt">Lastname: {{lastname}}</p>
</v-card> </v-card>
</v-col> </v-col>
<v-col cols="6"> <v-col cols="6">
<v-card class="pa-3"> <v-card class="pa-3">
<div v-if="haveLocation == true"> <div v-if="haveLocation == true">
<h1>Location</h1> <p style="font-size:30pt">Location</p>
<p>Longitude: {{location.longitude}}</p> <p style="font-size:15pt">Longitude: {{location.longitude}}</p>
<p>Latitude: {{location.latitude}}</p> <p style="font-size:15pt">Latitude: {{location.latitude}}</p>
<p>Radius: {{location.radius}}</p> <p style="font-size:15pt">Radius: {{location.radius}}</p>
</div> </div>
<div v-if="haveLocation == false"> <div v-if="haveLocation == false">
<h1>Location</h1> <p style="font-size:30pt">Location</p>
<p>No location set</p> <p>No location set</p>
</div> </div>
</v-card> </v-card>
</v-col> </v-col>
<v-col cols="6"> <v-col cols="6">
<v-card> <v-card>
<h1 class="pa-2">Today</h1> <p class="pa-2" style="font-size:30pt">Today</p>
<div :key="today._links.self.href" v-for="today in todaysRecord"> <div :key="today._links.self.href" v-for="today in todaysRecord">
<v-row no-gutters align="center"> <v-row no-gutters align="center">
<v-col cols="12"> <v-col cols="12">
@ -45,7 +46,7 @@
<v-col cols="6"> <v-col cols="6">
<v-card> <v-card>
<h1 class="pa-2">Accounts</h1> <p class="pa-2" style="font-size:30pt">Accounts</p>
<div <div
:key="timeTrackAccount._links.self.href" :key="timeTrackAccount._links.self.href"
v-for="timeTrackAccount in timeTrackAccounts" v-for="timeTrackAccount in timeTrackAccounts"
@ -65,7 +66,7 @@
</v-row> </v-row>
<v-card v-if="loggedIn == 'false'" class="pa-3"> <v-card v-if="loggedIn == 'false'" class="pa-3">
<h3>Welcome to geotime</h3> <p style="font-size:20pt">Welcome to geotime</p>
</v-card> </v-card>
</v-container> </v-container>
</template> </template>