Create user setting button in chat

This commit is contained in:
anhkha2003 2023-12-30 17:50:42 -06:00
parent c9f1d69b47
commit ca491bb77c
7 changed files with 71 additions and 47 deletions

View file

@ -139,6 +139,7 @@
.status-row {
display: flex;
padding: 15px;
padding-right: 0;
gap: 0.5em;
border-radius: 6px;
}
@ -195,7 +196,7 @@
align-items: center;
justify-content: center;
}
#setting-content {
.setting-content {
display: none;
position: absolute;
background-color: #f1f1f1;
@ -204,14 +205,14 @@
z-index: 1;
right: 0;
}
#setting-content li {
.setting-content a {
padding: 12px 16px;
text-decoration: none;
display: block;
color: black;
font-weight: bold;
font-size: 1rem;
}
#setting-content li:hover {
.setting-content a:hover {
background-color: #ddd;
cursor: pointer;
}