Merge pull request #8261 from brave/ntp-customize-background-fix

NTP: Fix customize popup background via missing semi-colon to css
This commit is contained in:
Brian Clifton
2021-03-16 11:25:47 -07:00
committed by GitHub
@@ -42,7 +42,7 @@ const getTopSiteCustomizationImage = (dark: boolean, selected: boolean, favorite
export const SettingsMenu = styled('div')<Props>`
width: 720px;
min-width: 720px;
${p => p.textDirection && (p.textDirection === 'rtl') ? `left: 12px` : `right: 12px`}
${p => p.textDirection && (p.textDirection === 'rtl') ? `left: 12px` : `right: 12px`};
background-color: ${p => p.theme.color.contextMenuBackground};
color: ${p => p.theme.color.contextMenuForeground};
border-radius: 8px;