webpage chats

This commit is contained in:
2026-04-12 02:38:27 +02:00
parent 095aa59f36
commit a153402d28
4 changed files with 305 additions and 156 deletions

View File

@@ -219,3 +219,32 @@ button:hover {
span {
color: var(--text-dark);
}
/* TABS */
.tabs {
display: flex;
justify-content: center;
margin: 20px;
}
.tab-button {
padding: 10px 20px;
margin: 0 5px;
border: none;
cursor: pointer;
background: var(--border-color);
border-radius: 4px;
}
.tab-button.active {
background: var(--primary-blue);
color: white;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}