Only minor adjustments
This commit is contained in:
@@ -226,11 +226,11 @@ onMounted(async () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div id="main" class="bg-hintergrund-farbe flex">
|
<div id="main" class="bg-hintergrund-farbe sm:flex overflow-y-auto sm:h-full sm:scrollbar">
|
||||||
<div id="left" class="sm:w-72 min-w-72">
|
<div id="left" class="sm:w-72 min-w-72">
|
||||||
<navigationbar></navigationbar>
|
<navigationbar></navigationbar>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-weiss w-100p border-x border-x-grau2" v-if="post">
|
<div class="text-weiss sm:w-100p w-screen sm:border-x sm:border-x-grau2" v-if="post">
|
||||||
<div> <!-- HEADER -->
|
<div> <!-- HEADER -->
|
||||||
<h2 class="align-middle p-6 text-3xl text-weiss border-b-grau2 border-b">Post</h2>
|
<h2 class="align-middle p-6 text-3xl text-weiss border-b-grau2 border-b">Post</h2>
|
||||||
</div>
|
</div>
|
||||||
@@ -315,7 +315,7 @@ onMounted(async () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-1/4">
|
<div class="sm:w-1/4 w-screen">
|
||||||
<contacts></contacts>
|
<contacts></contacts>
|
||||||
<legal></legal>
|
<legal></legal>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -141,6 +141,10 @@ function copyUser(){
|
|||||||
<label class="text-xl font-bold m-1 text-weiss" @click="consoleLog()">{{ userData.displayname }}</label>
|
<label class="text-xl font-bold m-1 text-weiss" @click="consoleLog()">{{ userData.displayname }}</label>
|
||||||
<label class="text-base m-1 text-grau2">@{{ userData.username }}</label>
|
<label class="text-base m-1 text-grau2">@{{ userData.username }}</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="text-center py-4">
|
||||||
|
<label class="text-base m-1 text-grau2">Bio:</label>
|
||||||
|
<p class="text-sm m-1 text-weiss italic">"{{ userData.bio }}"</p>
|
||||||
|
</div>
|
||||||
<div class="text-grau2 p2 text-center">
|
<div class="text-grau2 p2 text-center">
|
||||||
<label class="text-base m-1 p-2"> Followers <a class="text-weiss">{{ userData.followerCount }}</a></label>
|
<label class="text-base m-1 p-2"> Followers <a class="text-weiss">{{ userData.followerCount }}</a></label>
|
||||||
<label class="text-base m-1 p-2"> Following <a class="text-weiss">{{ userData.followingCount }}</a></label>
|
<label class="text-base m-1 p-2"> Following <a class="text-weiss">{{ userData.followingCount }}</a></label>
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ function handleSubmit(event: Event) {
|
|||||||
<input type="password" name="new-password-repeat" id="new-password-repeat" placeholder=" Repeat new passoword" class="mt-4 m-2 w-full max-w-xs bg-grau-dunkel p-4 text-weiss placeholder-grau2 focus:outline-none rounded-lg invalid:border-logo-farbe-rot invalid:border-2">
|
<input type="password" name="new-password-repeat" id="new-password-repeat" placeholder=" Repeat new passoword" class="mt-4 m-2 w-full max-w-xs bg-grau-dunkel p-4 text-weiss placeholder-grau2 focus:outline-none rounded-lg invalid:border-logo-farbe-rot invalid:border-2">
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" class="bg-button-farbe text-schwarz text-xl font-bold p-4 mt-8 rounded-lg">Change Password</button>
|
<button type="submit" class="bg-button-farbe text-schwarz text-xl font-bold p-4 mt-8 rounded-lg">Change Password</button>
|
||||||
<label class="text-logo-farbe-rot text-2xl">! INFO: PASSWÖRTER WIRD IN URLBAR ANGEZEIGT !</label>
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user