ArticleSeparatorNew.vue 415 B

123456789101112131415161718
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <template>
  3. <div class="line-new select-none text-center">
  4. <span class="text-blue bg-black px-2">{{ $t('new') }}</span>
  5. </div>
  6. </template>
  7. <style scoped>
  8. .line-new {
  9. background: linear-gradient(
  10. 180deg,
  11. rgba(0, 0, 0, 0) calc(50% - 1px),
  12. #23a2cd calc(50%),
  13. rgba(0, 0, 0, 0) calc(50% + 1px)
  14. );
  15. }
  16. </style>