Fix offline error styles

This commit is contained in:
Nicholas Zuber 2020-02-11 18:35:32 -05:00
parent d45ce4c070
commit 7ef2aab9ce

View File

@ -564,7 +564,7 @@ export const NotificationBlock = enhance(styled('tbody')`
transition: all 200ms ease; transition: all 200ms ease;
`); `);
export const ErrorContainer = enhance(styled('div')` export const ErrorContainer = enhance(styled('div')(p => `
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -574,17 +574,21 @@ export const ErrorContainer = enhance(styled('div')`
font-size: 20px; font-size: 20px;
font-weight: 500; font-weight: 500;
margin-bottom: 0; margin-bottom: 0;
text-align: center; color: ${p.dark ? WHITE : 'inherit'};
} }
p { p {
margin-bottom: 6px; margin-bottom: 6px;
opacity: 0.5;
color: ${p.dark ? WHITE : 'inherit'};
} }
span { span {
text-decoration: underline; text-decoration: underline;
text-underline-position: under; text-underline-position: under;
cursor: pointer; cursor: pointer;
opacity: 0.5;
color: ${p.dark ? WHITE : 'inherit'};
} }
`); `));
export const NotificationCell = enhance(styled('td')` export const NotificationCell = enhance(styled('td')`
white-space: nowrap; white-space: nowrap;