mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-15 13:00:25 +02:00
Adjust placeholder defaults
This commit is contained in:
@@ -95,9 +95,12 @@ export const LeftControls = () => {
|
||||
) : (
|
||||
<>
|
||||
<Center
|
||||
sx={{ background: 'rgb(53, 53, 53)', height: '100%' }}
|
||||
sx={{
|
||||
background: 'var(--placeholder-bg)',
|
||||
height: '100%',
|
||||
}}
|
||||
>
|
||||
<RiDiscLine color="rgb(126, 126, 126)" size={50} />
|
||||
<RiDiscLine color="var(--placeholder-fg)" size={50} />
|
||||
</Center>
|
||||
</>
|
||||
)}
|
||||
|
||||
@@ -189,8 +189,10 @@ export const Sidebar = () => {
|
||||
{imageUrl ? (
|
||||
<SidebarImage src={imageUrl} />
|
||||
) : (
|
||||
<Center sx={{ background: 'rgb(53, 53, 53)', height: '100%' }}>
|
||||
<RiDiscLine color="rgb(126, 126, 126)" size={50} />
|
||||
<Center
|
||||
sx={{ background: 'var(--placeholder-bg)', height: '100%' }}
|
||||
>
|
||||
<RiDiscLine color="var(--placeholder-fg)" size={50} />
|
||||
</Center>
|
||||
)}
|
||||
<Group
|
||||
|
||||
Reference in New Issue
Block a user