File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ <h2 class="mb-4">Servers</h2>
49
49
50
50
{% if server.security() %}
51
51
< h5 class ="text-sm text-gray-500 mt-1 "> Security:</ h5 >
52
- < ul class =" list-reset " >
52
+ < ul >
53
53
{% for sec in server.security() %}
54
54
< li >
55
55
{% set def = asyncapi.components().securityScheme(sec.json() | keys | head) %}
@@ -111,7 +111,7 @@ <h5 class="text-sm text-gray-500 mt-1">Security:</h5>
111
111
{% endif %}
112
112
113
113
{% if def.openIdConnectUrl() %}
114
- < div class ="px-4 py-2 ml-4 mb-3 border border-gray-400 bg-gray-200 rounded ">
114
+ < div class ="px-4 py-2 ml-4 mb-3 border border-gray-400 bg-gray-100 rounded ">
115
115
< div >
116
116
< span class ="text-xs font-bold text-gray-600 mt-1 mr-1 uppercase "> Connect URL:</ span >
117
117
< a class ="text-gray-600 text-xs font-normal " href ="{{def.openIdConnectUrl()}} "
@@ -122,7 +122,7 @@ <h5 class="text-sm text-gray-500 mt-1">Security:</h5>
122
122
{% endif %}
123
123
124
124
{% for flowName, flow in def.flows() %}
125
- < div class ="px-4 py-2 ml-4 mb-3 border border-gray-400 bg-gray-200 rounded ">
125
+ < div class ="px-4 py-2 ml-4 mb-3 border border-gray-400 bg-gray-100 rounded ">
126
126
< div >
127
127
< span class ="text-xs font-bold text-gray-600 mt-1 mr-1 uppercase "> Flow:</ span >
128
128
< span class ="text-gray-600 text-xs font-normal capitalize ">
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ <h1 class="text-2xl font-thin">
18
18
{{ asyncapi.info().title() }} {{ asyncapi.info().version() }}
19
19
</ h1 >
20
20
{% endif %}
21
- < ul class ="text-sm mt-10 list-reset mt-2 ">
21
+ < ul class ="text-sm mt-10 mt-2 ">
22
22
< li class ="mb-3 ">
23
23
< a class ="js-menu-item text-gray-700 no-underline " href ="#introduction "> Introduction</ a >
24
24
</ li >
@@ -31,7 +31,7 @@ <h1 class="text-2xl font-thin">
31
31
32
32
{% if asyncapi.hasChannels() %}
33
33
< h2 class ="text-xs uppercase text-gray-500 mt-10 mb-4 font-thin "> Operations</ h2 >
34
- < ul class ="text-sm list-reset mt-2 ">
34
+ < ul class ="text-sm mt-2 ">
35
35
<!-- With tags in sidebar -->
36
36
{% if params.sidebarOrganization === 'byTags' %}
37
37
{% include "./operations/by_tags.html" %}
@@ -81,7 +81,7 @@ <h2 class="text-xs uppercase text-gray-500 mt-10 mb-4 font-thin">Operations</h2>
81
81
</ ul >
82
82
83
83
< h2 class ="text-xs uppercase text-gray-500 mt-10 mb-4 font-thin "> Messages</ h2 >
84
- < ul class ="text-sm list-reset mt-2 ">
84
+ < ul class ="text-sm mt-2 ">
85
85
{% for key, value in asyncapi.allMessages() %}
86
86
< a class ="js-menu-item flex break-words no-underline text-gray-700 mt-8 sm:mt-8 md:mt-3 " href ="#message-{{ key }} ">
87
87
< div style ="display:inline-block; ">
Original file line number Diff line number Diff line change @@ -91,6 +91,11 @@ a:hover {
91
91
text-transform : uppercase;
92
92
}
93
93
94
+ .markdown : is (ol , ul ) {
95
+ padding-inline-start : 40px ;
96
+ list-style-type : disc;
97
+ }
98
+
94
99
.expand {
95
100
width : 20px ;
96
101
margin-bottom : -4px ;
You can’t perform that action at this time.
0 commit comments