NotificationPlaceholder.vue 904 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div v-if="small" class="ph-item border-0 mb-0 p-0" style="border-radius:15px;margin-left:-14px;">
  3. <div class="ph-col-12 mb-0">
  4. <div class="ph-row align-items-center mt-0">
  5. <div class="ph-avatar mr-2 d-flex" style="min-width: 32px;width:32px!important;height:32px!important;border-radius: 40px;"></div>
  6. <div class="ph-col-6"></div>
  7. </div>
  8. </div>
  9. </div>
  10. <div v-else class="ph-item border-0 shadow-sm p-1" style="border-radius:15px;margin-bottom: 1rem;">
  11. <div class="ph-col-12">
  12. <div class="ph-row align-items-center mt-0">
  13. <div class="ph-avatar mr-3 d-flex" style="min-width: 40px;width:40px!important;height:40px!important;border-radius: 15px;"></div>
  14. <div class="ph-col-6 big"></div>
  15. </div>
  16. </div>
  17. </div>
  18. </template>
  19. <script type="text/javascript">
  20. export default {
  21. props: {
  22. small: {
  23. type: Boolean,
  24. default: false
  25. }
  26. }
  27. }
  28. </script>