diff --git a/lib/components/EndpointLink/endpoint-link.scss b/lib/components/EndpointLink/endpoint-link.scss index 3bcbc51028..9a70ba0ab1 100644 --- a/lib/components/EndpointLink/endpoint-link.scss +++ b/lib/components/EndpointLink/endpoint-link.scss @@ -110,3 +110,39 @@ transform: translateY(0%) scaleY(1); } } + +.http-verb { + color: white; + + &.get { + background-color: $get-color; + } + + &.post { + background-color: $post-color; + } + + &.put { + background-color: $put-color; + } + + &.options { + background-color: $options-color; + } + + &.patch { + background-color: $patch-color; + } + + &.delete { + background-color: $delete-color; + } + + &.basic { + background-color: $basic-color; + } + + &.link { + background-color: $link-color; + } +} diff --git a/lib/components/SideMenu/side-menu-items.html b/lib/components/SideMenu/side-menu-items.html index 0db93069fb..b9ab5340bf 100644 --- a/lib/components/SideMenu/side-menu-items.html +++ b/lib/components/SideMenu/side-menu-items.html @@ -1,6 +1,9 @@