cover.css 355 B

123456789101112131415161718192021222324252627
  1. .cover {
  2. width: 100%;
  3. height: 100%;
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. z-index: -1;
  8. }
  9. .cover-img {
  10. width: 100%;
  11. height: 100%;
  12. object-fit: cover;
  13. }
  14. .no-cover {
  15. width: 100%;
  16. height: 100%;
  17. background-color: var(--bg2);
  18. }
  19. .profile {
  20. position: relative;
  21. background-color: transparent !important;
  22. }