Remove shadow on playerbar
This commit is contained in:
parent
e49fe6c452
commit
76ca03d8e3
1 changed files with 1 additions and 2 deletions
|
@ -2,10 +2,9 @@ import styled from 'styled-components';
|
||||||
import { Playerbar } from '/@/renderer/features/player';
|
import { Playerbar } from '/@/renderer/features/player';
|
||||||
|
|
||||||
const PlayerbarContainer = styled.footer`
|
const PlayerbarContainer = styled.footer`
|
||||||
z-index: 100;
|
z-index: 200;
|
||||||
grid-area: player;
|
grid-area: player;
|
||||||
background: var(--playerbar-bg);
|
background: var(--playerbar-bg);
|
||||||
filter: drop-shadow(0 -3px 1px rgba(0, 0, 0, 10%));
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const PlayerBar = () => {
|
export const PlayerBar = () => {
|
||||||
|
|
Reference in a new issue