mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 14:06:09 +05:00
torrent source regex added
This commit is contained in:
@@ -30,7 +30,7 @@ export const RightSide = styled.div`
|
||||
`
|
||||
|
||||
export const RightSideContainer = styled.div`
|
||||
${({ isHidden, notificationMessage }) => css`
|
||||
${({ isHidden, notificationMessage, isError }) => css`
|
||||
height: 455px;
|
||||
|
||||
${notificationMessage &&
|
||||
@@ -44,7 +44,7 @@ export const RightSideContainer = styled.div`
|
||||
content: '${notificationMessage}';
|
||||
display: grid;
|
||||
place-items: center;
|
||||
background: #84cda7;
|
||||
background: ${isError ? '#cda184' : '#84cda7'};
|
||||
padding: 10px 15px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
|
||||
Reference in New Issue
Block a user