Topbar.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <div class="top-bar" >
  3. <v-btn
  4. href="https://admin.opentalent.fr/#/login/"
  5. prepend-icon="fas fa-user"
  6. class="btn-login"
  7. >
  8. Se connecter<br />aux logiciels
  9. </v-btn>
  10. <v-btn
  11. to="/agenda-culturel"
  12. prepend-icon="fas fa-calendar"
  13. class="btn-agenda"
  14. >
  15. Agenda Culturel
  16. </v-btn>
  17. </div>
  18. </template>
  19. <script setup lang="ts">
  20. import { useDisplay } from "vuetify";
  21. const { mdAndDown } = useDisplay();
  22. </script>
  23. <style scoped lang="scss">
  24. .top-bar {
  25. display: flex;
  26. flex-direction: row;
  27. justify-content: flex-end;
  28. align-items: center;
  29. height: 54px;
  30. background-color: var(--neutral-color-alt);
  31. font-weight: 700;
  32. font-size: 0.7rem;
  33. .v-btn {
  34. margin: 4px 8px;
  35. border-radius: 6px;
  36. height: 44px;
  37. }
  38. }
  39. .btn-login {
  40. background: var(--primary-color);
  41. color: var(--on-primary-color);
  42. }
  43. .btn-agenda {
  44. background: var(--secondary-color);
  45. }
  46. /**
  47. .vertical-bar {
  48. width: 0px;
  49. height: 3rem;
  50. border: 0.5px solid rgba(14, 45, 50, 0.4);
  51. margin-left: 10px;
  52. margin-top: 0.2rem;
  53. }
  54. */
  55. </style>