fix(discovery): added border radius

This commit is contained in:
trashtemp
2022-01-10 10:02:17 +01:00
parent d61f8b077e
commit a9a2aff9a6

View File

@@ -31,12 +31,14 @@ const Container = styled.div`
background: var(--background); background: var(--background);
` `
: css` : css`
background: var(--secondary-background); background: var(--background);
`} `}
`; `;
const Frame = styled.iframe<{ loaded: boolean }>` const Frame = styled.iframe<{ loaded: boolean }>`
border: 0; border: 0;
border-start-start-radius: 8px;
border-end-start-radius: 8px;
${(props) => ${(props) =>
props.loaded props.loaded