<template>
  <nav class="navigation">
    <nuxt-link to="/" exact>Časová osa</nuxt-link>
    <nuxt-link to="/o-projektu">O projektu</nuxt-link>
  </nav>
</template>

<style lang="scss" scoped>
.navigation {
  width: 40%;
  // max-width: 155px;

  display: flex;
  justify-content: flex-end;

  margin-left: 0;
  margin-right: 10%;

  @media (min-width: 590px) {
    flex: 1;
  }

  @media (max-width: 590px) {
    width: 100%;


    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }

  a {
    font-family: $font-secondary;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 10%;

    &:last-of-type {
      @media (max-width: 590px) {
        margin-right: 0;
      }
    }

    &:hover,
    &.is-active {
        text-decoration: underline;
    }
  }
}
</style>