Skip to content
Snippets Groups Projects
Commit fc65032d authored by Titus Netland's avatar Titus Netland
Browse files

Component styling update

parent 27524ae1
No related branches found
No related tags found
1 merge request!78Component styling
Pipeline #179252 failed
......@@ -2,7 +2,7 @@
<div class="flex items-center justify-between mx-4">
<div class="flex-1 min-w-0">
<h2
class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate"
class="text-xl md:text-2xl text-gray-600 font-medium w-full sm:truncate"
>
{{ community.name }}
</h2>
......
<template>
<div class="md:ring-1 ring-gray-300 rounded-xl overflow-hidden mx-auto mb-auto max-w-md w-full p-4">
<!-- Component heading -->
<h3
class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
<div
class="text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
>
Opprett ny gruppe
</h3>
</div>
<!-- Radio boxes -->
<div class="mt-6">
......
<template>
<div class="md:ring-1 ring-gray-300 rounded-xl overflow-hidden mx-auto mb-auto max-w-md w-full">
<div class="px-6 py-4 mt-4">
<h3
class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
<div
class="text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
>
Logg på
</h3>
</div>
<div>
<div
......
......@@ -3,7 +3,7 @@
class="md:ring-1 ring-gray-300 rounded-xl overflow-hidden mx-auto mb-auto max-w-md w-full p-4"
>
<h3 class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8">Endre passord</h3>
<div class="text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8">Endre passord</div>
<div
id="firstPasswordField"
......
......@@ -2,11 +2,11 @@
<div
class="w-full max-w-md mx-auto mb-auto md:ring-1 ring-gray-300 overflow-hidden rounded-xl p-4"
>
<h3
class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
<div
class="text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
>
Opprett ny bruker
</h3>
Opprett ny konto
</div>
<form @submit.prevent>
<div class="grid grid-cols-1 gap-6 mt-4">
......@@ -157,7 +157,7 @@
</div>
<div class="flex justify-end mt-6">
<Button @click="submit" :text="'Lagre'"></Button>
<Button @click="submit" :text="'Opprett'"></Button>
</div>
</form>
</div>
......
<template>
<div class="md:ring-1 ring-gray-300 rounded-xl overflow-hidden mx-auto mb-auto max-w-md w-full p-4">
<h3 class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8">Glemt passordet ditt?</h3>
<div class="text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8">Glemt passordet ditt?</div>
<div
id="emailField"
......
<template>
<div class="md:ring-1 ring-gray-300 rounded-xl overflow-hidden mx-auto mb-auto max-w-md w-full p-4">
<!-- Component heading -->
<h3 class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8">Opprett ny utleie</h3>
<div class="text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8">Opprett ny utleie</div>
<!-- Title -->
<div class="mb-6" :class="{ error: v$.item.title.$errors.length }">
......
<template>
<div v-if="loggedIn">
<div class="flex flex-row p-4 relative">
<p class="capitalize font-bold w-full">Mine felleskap</p>
<p class="text-xl md:text-2xl text-gray-600 font-medium w-full">Mine felleskap</p>
<UserAddIcon
class="cursor-pointer max-h-6 max-w-6 float-right grow"
@click="$router.push('/newCommunity')"
......@@ -11,7 +11,7 @@
</div>
<CommunityList :communities="myCommunities" :member="true" />
</div>
<p class="capitalize font-bold w-full p-4">Offentlige felleskap</p>
<p class="text-xl md:text-2xl text-gray-600 font-medium w-full m-4">Offentlige felleskap</p>
<CommunityList :communities="publicCommunities" :member="false" />
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment