File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
1
{{! template-lint-disable no-invalid-interactive }}
2
2
<section class =' class-field-description {{ @type }} ' >
3
3
<h3 id =' {{ @field.name }} ' class =" class-field-description--header" >
4
- <span class =' {{ @type }} -name' >{{ @field.name }} </span >
5
- {{ #if @field.params }}
6
- <span class =' args' >
7
- ({{ join ' , ' (map-by ' name' @field.params )}} )
4
+ <span class =" signature" >
5
+ <span class =' {{ @type }} -name' >
6
+ {{ @field.name }}
8
7
</span >
9
- {{ /if }}
10
- {{ #if @field.return }}
11
- <span class =' return-type' >{{ @field.return.type }} </span >
12
- {{ /if }}
8
+ {{ #if @field.params }} (<span class =' args' >{{ join ' , ' (map-by ' name' @field.params )}} </span >){{ /if }}
9
+ {{ #if @field.return }}
10
+ : <span class =' return-type' >{{ @field.return.type }} </span >
11
+ {{ /if }}
12
+ </span >
13
13
{{ #if @field.access }}
14
14
<span class =' access' >{{ @field.access }} </span >
15
15
{{ /if }}
Original file line number Diff line number Diff line change @@ -145,6 +145,10 @@ dd {
145
145
margin : 0 ;
146
146
}
147
147
148
+ .class-field-description .args {
149
+ font-weight : var (--font-weight-2 );
150
+ }
151
+
148
152
.parameter-type ,
149
153
.class-field-description .return-type ,
150
154
.return .return-type {
You can’t perform that action at this time.
0 commit comments