mirror of
https://github.com/nickzuber/meteorite.git
synced 2024-11-29 09:31:15 +03:00
Fix offline error styles
This commit is contained in:
parent
d45ce4c070
commit
7ef2aab9ce
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user