add author edits logic and initial UI

This commit is contained in:
Tom
2023-05-22 18:56:34 +02:00
parent 2d3fcc330a
commit f6f59f684d
5 changed files with 182 additions and 4 deletions
+17
View File
@@ -3204,4 +3204,21 @@ export const Footer = styled.div`
return '';
}
}}
`;
export const AuthorDeleteAlert = styled.div`
.author-delete-alert {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px 0 rgba(0,0,0,.25);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
`;