mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-04-24 20:07:52 +00:00
14 lines
398 B
CSS
14 lines
398 B
CSS
.reaction-container {
|
|
position: relative; /* Parent must be positioned relatively */
|
|
}
|
|
|
|
.emoji-picker {
|
|
position: absolute; /* Picker positioned absolutely relative to the parent */
|
|
right: 0;
|
|
z-index: 1000; /* Ensure picker appears above other content */
|
|
}
|
|
|
|
.message-container {
|
|
overflow: visible; /* Ensure the message container doesn't cut off the picker */
|
|
}
|
|
|