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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user