Use fixed width for REST query verbs

This commit is contained in:
Andrew Kingston 2021-12-16 11:56:14 +00:00
parent 49e813cc6c
commit af8d55ef32
2 changed files with 2 additions and 1 deletions

View File

@ -133,5 +133,6 @@
.iconText { .iconText {
margin-top: 1px; margin-top: 1px;
font-size: var(--spectrum-global-dimension-font-size-50); font-size: var(--spectrum-global-dimension-font-size-50);
flex: 0 0 34px;
} }
</style> </style>

View File

@ -84,7 +84,7 @@ export function customQueryIconText(datasource, query) {
case "read": case "read":
return "GET" return "GET"
case "delete": case "delete":
return "DELETE" return "DEL"
case "patch": case "patch":
return "PATCH" return "PATCH"
} }