button friend in profile

This commit is contained in:
NigeParis 2026-01-16 15:24:13 +01:00 committed by Maix0
parent 946478f301
commit c547c2301f
2 changed files with 9 additions and 2 deletions

View file

@ -291,6 +291,13 @@ div-private {
right-12 right-12
} }
.popup-b-friend {
@apply
absolute
bottom-32
left-12
}
.popup-b-game { .popup-b-game {
@apply @apply
absolute absolute

View file

@ -16,7 +16,7 @@ export async function openProfilePopup(profil: ClientProfil) {
<div id="profile-about" class="text-2xl">About: <span class="recessed">${profil.text}</span> </div> <div id="profile-about" class="text-2xl">About: <span class="recessed">${profil.text}</span> </div>
<button id="popup-b-hGame" class="btn-style-games popup-b-game">View Pong Games</button> <button id="popup-b-hGame" class="btn-style-games popup-b-game">View Pong Games</button>
<button id="popup-b-hTGame" class="btn-style-games popup-b-TTTgame">View TTT Games</button> <button id="popup-b-hTGame" class="btn-style-games popup-b-TTTgame">View TTT Games</button>
<button id="btn-friend" class="btn-style popup-b-friend">friend</button>
</div> </div>
`; `;
const profilList = document.getElementById("profile-modal") ?? null; const profilList = document.getElementById("profile-modal") ?? null;