Responsive styles for portrait orientation phones

This commit is contained in:
Infinite
2020-01-29 22:22:01 +01:00
parent 1ccf8d1586
commit 3f9f32c356
29 changed files with 273 additions and 206 deletions

View File

@@ -43,7 +43,7 @@ export const DetailsEditNavbar: React.FC<IProps> = (props: IProps) => {
function renderDeleteButton() {
if (props.isNew || props.isEditing) return;
return (
<Button variant="danger" className="delete" onClick={() => setIsDeleteAlertOpen(true)}>
<Button variant="danger" className="delete d-none d-sm-block" onClick={() => setIsDeleteAlertOpen(true)}>
Delete
</Button>
);