Closes #665 - Correctly handle user not granting auth permissions, display friendly error

This commit is contained in:
Tom Moor
2018-06-04 21:06:47 -07:00
parent 53a0f423c3
commit 22e823df9a
5 changed files with 49 additions and 11 deletions

View File

@ -0,0 +1,11 @@
// @flow
import styled from 'styled-components';
const Notice = styled.p`
background: #ffd95c;
color: hsla(46, 100%, 20%, 1);
padding: 10px;
border-radius: 4px;
`;
export default Notice;