Fix default banner sizing

zio/stable
Paul Frazee 2023-03-20 16:20:29 -05:00
parent 91b360fd19
commit d8f4475696
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ export function UserBanner({
] ]
const renderSvg = () => ( const renderSvg = () => (
<Svg width="100%" height="150" viewBox="0 0 400 100"> <Svg width="100%" height="150" viewBox="0 0 400 150">
<Rect x="0" y="0" width="400" height="100" fill="#0070ff" /> <Rect x="0" y="0" width="400" height="150" fill="#0070ff" />
</Svg> </Svg>
) )