handle text overflow in CopyButton
This commit is contained in:
parent
90292ba42e
commit
e0f5c2ae12
|
@ -2,6 +2,11 @@ import { styled } from '~/src/styles/config'
|
||||||
|
|
||||||
export const Wrapper = styled('div', {
|
export const Wrapper = styled('div', {
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
|
|
||||||
|
input: {
|
||||||
|
paddingRight: 82,
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
export const CopyButton = styled('button', {
|
export const CopyButton = styled('button', {
|
||||||
|
|
Loading…
Reference in New Issue