Skip to content

Commit

Permalink
fix(open-api): fix dark mode not working correctly for the operations…
Browse files Browse the repository at this point in the history
… block

INT-407
  • Loading branch information
FreekVR committed Apr 5, 2024
1 parent 146ac40 commit 8fce179
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<template>
<header class="bg-gray-100 mb-4 mt-4 open-api-operation p-3">
<header class="bg-gray-100 dark:bg-gray-800 mb-4 mt-4 open-api-operation p-3">
<strong>Endpoint:</strong>
<pre
class="inline-block leading-none m-0 ml-3 p-1 rounded-sm text-sm"
class="dark:text-black inline-block leading-none m-0 ml-3 p-1 rounded-sm text-sm"
:class="methodClass"
>{{ method.toUpperCase() }}</pre
>
<pre class="inline m-0 ml-2 p-0 text-gray-700 text-sm">{{ endpoint }}</pre>
<pre class="dark:text-gray-100 inline m-0 ml-2 p-0 text-gray-700 text-sm">{{ endpoint }}</pre>
<br />
<template v-if="authentication">
<strong>Authentication:</strong>&nbsp;
Expand Down

0 comments on commit 8fce179

Please sign in to comment.