profile-mode.css (578B)
1 .buttons, 2 .main .profile { 3 display: flex; 4 justify-content: center; 5 } 6 7 .main .profile { 8 align-items: center; 9 min-height: calc(100vh - var(--header-height) - var(--footer-height) - (var(--gap) * 2)); 10 text-align: center; 11 } 12 13 .profile .profile_inner { 14 display: flex; 15 flex-direction: column; 16 align-items: center; 17 gap: 1rem; 18 } 19 20 .profile img { 21 border-radius: 50%; 22 } 23 24 .buttons { 25 flex-wrap: wrap; 26 max-width: 400px; 27 gap: 1rem; 28 } 29 30 .button { 31 background: var(--tertiary); 32 border-radius: var(--radius); 33 padding: 0.4rem 0.8rem; 34 }