Skip to content

Commit f62fcf2

Browse files
committed
fix(styles): adjust positioning of elements for improved layout and interaction
1 parent c15ead6 commit f62fcf2

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/Dashboard/frontend/src/components/ChatView.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4288,6 +4288,7 @@ async function send() {
42884288
padding: 0 12px;
42894289
flex-shrink: 0;
42904290
z-index: 100;
4291+
position: relative;
42914292
}
42924293
.portal-trustline {
42934294
display: inline-flex;
@@ -4302,6 +4303,11 @@ async function send() {
43024303
overflow: hidden;
43034304
text-overflow: ellipsis;
43044305
max-width: 60vw;
4306+
position: absolute;
4307+
left: 50%;
4308+
top: 50%;
4309+
transform: translate(-50%, -50%);
4310+
pointer-events: auto;
43054311
}
43064312
.portal-trustline-dot {
43074313
width: 6px;

0 commit comments

Comments
 (0)