123456789101112131415161718192021222324252627 |
- .cover {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- .cover-img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .no-cover {
- width: 100%;
- height: 100%;
- background-color: var(--bg2);
- }
- .profile {
- position: relative;
- background-color: transparent !important;
- }
|