mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 21:38:13 +00:00
48 lines
972 B
Vue
48 lines
972 B
Vue
<template>
|
|
<section class="journal-header">
|
|
<div class="journal-type-options">
|
|
<router-link
|
|
class="route-link"
|
|
active-class="route-link-active"
|
|
to="/journal/timetables"
|
|
exact
|
|
>
|
|
{{ $t('journal.section-timetables') }}
|
|
</router-link>
|
|
•
|
|
<router-link class="route-link" active-class="route-link-active" to="/journal/dispatchers">
|
|
{{ $t('journal.section-dispatchers') }}
|
|
</router-link>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.journal-type-options {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
background-color: #2c2c2c;
|
|
max-width: 18em;
|
|
|
|
font-size: 1.2em;
|
|
margin: 0 auto;
|
|
|
|
border-radius: 0 0 0.5em 0.5em;
|
|
padding: 0.1em 0;
|
|
}
|
|
|
|
.journal-section > section {
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
</style>
|