Topbar.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>
  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: #dbdbdb;
  31. font-family: "Barlow", serif;
  32. font-style: normal;
  33. font-weight: 700;
  34. font-size: 0.7rem;
  35. }
  36. .top-bar .v-btn {
  37. margin: 4px 8px;
  38. border-radius: 6px;
  39. height: 44px;
  40. }
  41. .btn-login {
  42. background: #091d20;
  43. color: white;
  44. }
  45. .btn-agenda {
  46. background: #9edbdd;
  47. }
  48. /**
  49. .vertical-bar {
  50. width: 0px;
  51. height: 3rem;
  52. border: 0.5px solid rgba(14, 45, 50, 0.4);
  53. margin-left: 10px;
  54. margin-top: 0.2rem;
  55. }
  56. */
  57. </style>