From ce51579732f137bf1681c8d6d481eaaa1e1d9fdb Mon Sep 17 00:00:00 2001 From: rezed Date: Thu, 24 Nov 2022 15:49:40 +0400 Subject: [PATCH] fix: vote script box styles --- modules/votes/ui/VoteScript/VoteScriptStyle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/votes/ui/VoteScript/VoteScriptStyle.ts b/modules/votes/ui/VoteScript/VoteScriptStyle.ts index 39cf762f..7355723a 100644 --- a/modules/votes/ui/VoteScript/VoteScriptStyle.ts +++ b/modules/votes/ui/VoteScript/VoteScriptStyle.ts @@ -57,6 +57,7 @@ export const VoteScriptBodyWrap = styled.div` export const CallWrapper = styled.div` padding: ${({ theme }) => theme.spaceMap.lg}px; + word-break: break-all; &:not(:last-child) { border-bottom: 1px solid ${p => p.theme.colors.border}; @@ -89,7 +90,6 @@ export const ScriptBox = styled.div` font-size: ${({ theme }) => theme.fontSizesMap.xxs}px; color: ${({ theme }) => theme.colors.text}; border-radius: 8px; - background-color: rgba(255, 255, 255, 0.2); word-break: break-all; white-space: pre-wrap; `