Skip to content

Commit

Permalink
fix: button text center
Browse files Browse the repository at this point in the history
  • Loading branch information
cernochmartin committed Apr 28, 2024
1 parent 60c4db1 commit 4d20354
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion components/the/TheFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const socials = [
</script>

<template>
<footer class="flex justify-between items-center mt-32">
<footer class="flex max-xl:flex-col max-xl:text-center max-xl:gap-6 justify-between items-center mt-32">
<div>
<p>© {{ year }}, VOŠ, SPŠ a JŠ Kutná Hora, všechna práva vyhrazena</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion pages/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ useSeoMeta({
</script>

<template>
<main class="mt-32">
<main class="mt-16 xl:mt-32">
<ContentDoc />
</main>
</template>
6 changes: 3 additions & 3 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const toast = useToast()
</script>

<template>
<main class="mt-32">
<main class="mt-16 xl:mt-32">
<div class="flex justify-center mb-6">
<UBadge color="primary" variant="subtle" class="text-center">Studentský blog plný zajímavých článků o IT z průmyslovky Kutná
Hora!</UBadge>
Expand All @@ -23,9 +23,9 @@ const toast = useToast()
</p>
</div>
<div class="flex max-xl:flex-col gap-6 justify-center mt-6">
<UButton @click="toast.add({ title: 'Přešel jsi na stránku seznam článků!' })" to="/tips-and-tricks"
<UButton class="flex justify-center" @click="toast.add({ title: 'Přešel jsi na stránku seznam článků!' })" to="/tips-and-tricks"
label="Přejít na stránku Tips&Tricks" color="primary" />
<UButton @click="toast.add({ title: 'Přešel jsi na stránku studentské projekty!' })" to="/projects"
<UButton class="flex justify-center" @click="toast.add({ title: 'Přešel jsi na stránku studentské projekty!' })" to="/projects"
label="Přejít na stránku se studentskými projekty" color="primary" />
</div>
<ContentList path="/articles" v-slot="{ list }">
Expand Down
10 changes: 5 additions & 5 deletions pages/projects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ const toast = useToast()
</script>

<template>
<main class="mt-32">
<main class="mt-16 xl:mt-32">
<div class="flex justify-center mb-6">
<UBadge color="primary" variant="subtle">Studentský blog plný zajímavých článků o IT z průmyslovky Kutná
<UBadge color="primary" variant="subtle" class="text-center">Studentský blog plný zajímavých článků o IT z průmyslovky Kutná
Hora!</UBadge>
</div>
<h1>Studentské projekty</h1>
<div class="flex justify-center gap-6">
<UButton @click="toast.add({ title: 'Přešel jsi na domovskou stránku!' })" to="/"
<div class="flex max-xl:flex-col justify-center gap-6 mt-6">
<UButton class="flex justify-center" @click="toast.add({ title: 'Přešel jsi na domovskou stránku!' })" to="/"
label="Přejít na domovskou stránku" color="primary" />
<UButton @click="toast.add({ title: 'Přešel jsi na stránku seznam článků!' })" to="/tips-and-tricks"
<UButton class="flex justify-center" @click="toast.add({ title: 'Přešel jsi na stránku seznam článků!' })" to="/tips-and-tricks"
label="Přejít na stránku Tips&Tricks" color="primary" />
</div>
<ContentList path="/projects" v-slot="{ list }">
Expand Down
14 changes: 7 additions & 7 deletions pages/tips-and-tricks.vue
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<script setup lang="ts">
useSeoMeta({
title: 'Blog SPŠ Kutná Hora - seznam článků',
ogTitle: 'Blog SPŠ Kutná Hora - seznam článků'
title: 'Blog SPŠ Kutná Hora - Tips&Tricks',
ogTitle: 'Blog SPŠ Kutná Hora - Tips&Tricks',
})
const toast = useToast()
</script>

<template>
<main class="mt-32">
<main class="mt-16 xl:mt-32">
<div class="flex justify-center mb-6">
<UBadge color="primary" variant="subtle">Studentský blog plný zajímavých článků o IT z průmyslovky Kutná
<UBadge color="primary" variant="subtle" class="text-center">Studentský blog plný zajímavých článků o IT z průmyslovky Kutná
Hora!</UBadge>
</div>
<h1>Tips&Tricks</h1>
<div class="flex justify-center gap-6">
<UButton @click="toast.add({ title: 'Přešel jsi na domovskou stránku!' })" to="/"
<div class="flex max-xl:flex-col justify-center gap-6 mt-6">
<UButton class="flex justify-center" @click="toast.add({ title: 'Přešel jsi na domovskou stránku!' })" to="/"
label="Přejít na domovskou stránku" color="primary" />
<UButton @click="toast.add({ title: 'Přešel jsi na stránku studentské projekty!' })" to="/projects"
<UButton class="flex justify-center" @click="toast.add({ title: 'Přešel jsi na stránku studentské projekty!' })" to="/projects"
label="Přejít na stránku se studentskými projekty" color="primary" />
</div>
<ContentList path="/tips-and-tricks" v-slot="{ list }">
Expand Down

0 comments on commit 4d20354

Please sign in to comment.