File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 97
97
padding : 20px 0 ;
98
98
@include display-flex ;
99
99
@include justify-content (space-between );
100
+ @include flex-wrap (wrap );
100
101
101
102
& :last-of-type { border : none ; }
102
103
}
123
124
color : $main-color-light ;
124
125
}
125
126
.downloads { @include display-flex ; @include align-items (center ); }
127
+
128
+ .quick-links {
129
+ ul {
130
+ @include display-flex ;
131
+ font-size : 80% ;
132
+ list-style-type : none ;
133
+ margin : 1em 0 0 0 ;
134
+ padding : 0 ;
135
+
136
+ li {
137
+ margin-right : 1em ;
138
+
139
+ & :last-child {
140
+ margin-right : 0 ;
141
+ }
142
+ }
143
+ }
144
+ }
126
145
}
127
146
128
147
.pagination {
Original file line number Diff line number Diff line change 15
15
<span class =' num' >{{ format-num crate.downloads }} </span >
16
16
</div >
17
17
</div >
18
+ <div class =" quick-links" >
19
+ <ul >
20
+ {{ #if crate.homepage }}
21
+ <li ><a href =" {{ crate.homepage }} " >Homepage</a ></li >
22
+ {{ /if }}
23
+ {{ #if crate.documentation }}
24
+ <li ><a href =" {{ crate.documentation }} " >Documentation</a ></li >
25
+ {{ /if }}
26
+ {{ #if crate.repository }}
27
+ <li ><a href =" {{ crate.repository }} " >Repository</a ></li >
28
+ {{ /if }}
29
+ </ul >
30
+ </div >
You can’t perform that action at this time.
0 commit comments