fix(GlobalCarousel/Jumpers/EditChannels): fix Svg.Plus alignment

This commit is contained in:
Aminejv 2021-11-04 14:46:53 +01:00
parent 7ced5b22a5
commit 321f181980

View File

@ -213,7 +213,16 @@ function Channels({
onClick={(e) => (e.stopPropagation(), onCreateChannel(searchQuery))}
title={searchQuery}
>
<SVG.Plus width={16} height={16} style={{ pointerEvents: "none" }} />
<SVG.Plus
width={16}
height={16}
style={{
position: "relative",
top: -1,
verticalAlign: "middle",
pointerEvents: "none",
}}
/>
<span style={{ marginLeft: 4 }}>{searchQuery}</span>
</ChannelButton>
</motion.div>