♿ (js) Use px instead of rem to look good on any website
This commit is contained in:
@ -61,7 +61,7 @@ export const ChatChunk = (props: Props) => {
|
||||
style={{
|
||||
'margin-right': props.theme.chat.guestAvatar?.isEnabled
|
||||
? '50px'
|
||||
: '0.5rem',
|
||||
: '8px',
|
||||
}}
|
||||
>
|
||||
<For each={props.messages.slice(0, displayedMessageIndex() + 1)}>
|
||||
|
@ -21,7 +21,7 @@ export const LoadingChunk = (props: Props) => (
|
||||
style={{
|
||||
'margin-right': props.theme.chat.guestAvatar?.isEnabled
|
||||
? '50px'
|
||||
: '0.5rem',
|
||||
: '8px',
|
||||
}}
|
||||
>
|
||||
<LoadingBubble />
|
||||
|
@ -7,8 +7,8 @@ export const LoadingBubble = () => (
|
||||
<div
|
||||
class="flex items-center absolute px-4 py-2 rounded-lg bubble-typing "
|
||||
style={{
|
||||
width: '4rem',
|
||||
height: '2rem',
|
||||
width: '64px',
|
||||
height: '32px',
|
||||
}}
|
||||
data-testid="host-bubble"
|
||||
>
|
||||
|
Reference in New Issue
Block a user