123456789101112131415161718192021 |
- .profile-container {
- width: 100%;
- height: 100%;
- margin: 0;
- display: flex;
- flex-direction: column;
- }
- .profile-details {
- background-color: var(--accent-color);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .profile-detail {
- display: flex;
- flex-direction: column;
- }
|