
* Extract "webhooks & events" to separate page * Create separate /custom-app/ path for custom apps with webhooks * Change all /webhooks/ paths to /custom-apps/ * Update messages * Update generated graphql types * Create findById util * Refactor consts and resolvers for custom app urls * Fix app graphql fragment * Update Miscellaneous icon for Webhooks and Events * Add tests for custom apps utils * Fix dark-mode Miscellaneous icon for Webhooks and Events * adjustments for autotests Co-authored-by: karolm-saleor <karol.macheta@saleor.io>
23 lines
403 B
TypeScript
23 lines
403 B
TypeScript
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
export const useStyles = makeStyles(
|
|
theme => ({
|
|
[theme.breakpoints.down("md")]: {
|
|
colNote: {
|
|
width: 200,
|
|
},
|
|
},
|
|
colActions: {
|
|
textAlign: "right",
|
|
width: 100,
|
|
},
|
|
colKey: {
|
|
width: 200,
|
|
},
|
|
colNote: {},
|
|
table: {
|
|
tableLayout: "fixed",
|
|
},
|
|
}),
|
|
{ name: "CustomAppTokens" },
|
|
);
|