view client/src/components/PageNotFound.vue @ 5167:a5fd84c4f2fe

timeslider: avoid moving cursor to future area (click event) * move the cursor to "now" instead of 12:00 in case "now" is earlier when clicking on value of "today" on time slider and zoom level is for days.
author Fadi Abbud <fadi.abbud@intevation.de>
date Tue, 07 Apr 2020 15:16:11 +0200
parents 6c5364ff0abb
children
line wrap: on
line source

<template>
  <div class="main d-flex flex-row" style="position: relative;">
    <Spacer />
    <div class="my-auto mx-auto">
      <h1>
        <font-awesome-icon icon="frown-open" fixed-width />
        We are sorry. The ressource you requested could not be found.
      </h1>
    </div>
  </div>
</template>

<script>
export default {
  name: "pagenotfound",
  components: {
    Spacer: () => import("@/components/Spacer")
  }
};
</script>

<style></style>