mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
Merge pull request #1259 from AdamTuraj/main
Fix color issue with banner
This commit is contained in:
commit
b9860dcd37
1 changed files with 6 additions and 8 deletions
|
|
@ -53,18 +53,16 @@ const Announcement = ({
|
|||
/>
|
||||
)}
|
||||
{imgSrc && (
|
||||
<Box sx={{ mr: [2,3], ml: 2, width: 32, flexShrink: 0 }}>
|
||||
<Image
|
||||
src={imgSrc}
|
||||
alt={imgAlt}
|
||||
width={32}
|
||||
height={32}
|
||||
/>
|
||||
<Box sx={{ mr: [2, 3], ml: 2, width: 32, flexShrink: 0 }}>
|
||||
<Image src={imgSrc} alt={imgAlt} width={32} height={32} />
|
||||
</Box>
|
||||
)}
|
||||
<Text
|
||||
as="p"
|
||||
sx={{ flex: '1 1 auto', strong: { display: ['inline', 'block'] } }}
|
||||
sx={{
|
||||
flex: '1 1 auto',
|
||||
strong: { display: ['inline', 'block'], color: 'secondary' }
|
||||
}}
|
||||
>
|
||||
<strong>{copy}</strong>
|
||||
{caption && (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue