Topbar.vue 1.1 KB

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