File tree Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 8
8
// overriding default Search Results styles
9
9
@include respond-to (large ) {
10
10
grid-auto-flow : initial ;
11
- grid-template-columns : repeat (2 , 50% );
11
+ grid-template-columns : repeat (2 , 1fr );
12
+ }
13
+
14
+ @include respond-to (extraLarge) {
15
+ grid-auto-flow : initial ;
16
+ grid-template-columns : repeat (3 , 1fr );
12
17
}
13
18
14
19
.SearchResult {
Original file line number Diff line number Diff line change 62
62
.AddonsByAuthorsCard :not (.AddonsByAuthorsCard--theme ) {
63
63
.Card-contents .AddonsCard-list {
64
64
@include respond-to (large ) {
65
- grid-template-columns : repeat (1 , 1fr );
65
+ grid-template-columns : repeat (2 , 1fr );
66
66
}
67
67
68
- @include respond-to (extraExtraLarge ) {
69
- grid-template-columns : repeat (2 , 1fr );
68
+ @include respond-to (extraLarge ) {
69
+ grid-template-columns : repeat (3 , 1fr );
70
70
}
71
71
}
72
72
}
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ export class AddonBase extends React.Component {
277
277
) ;
278
278
}
279
279
280
- renderShowMoreCard ( ) {
280
+ renderAboutThisCard ( ) {
281
281
const { addon, i18n } = this . props ;
282
282
283
283
let showAbout ;
@@ -547,21 +547,21 @@ export class AddonBase extends React.Component {
547
547
</ Card >
548
548
) : null }
549
549
550
- { this . renderShowMoreCard ( ) }
550
+ { this . renderAboutThisCard ( ) }
551
551
552
552
{ this . renderRatingsCard ( ) }
553
-
554
- { this . renderRecommendations ( ) }
555
553
</ div >
556
554
557
- < ContributeCard addon = { addon } />
558
-
559
555
< PermissionsCard version = { currentVersion } />
560
556
561
557
< AddonMoreInfo addon = { addon } />
562
558
559
+ < ContributeCard addon = { addon } />
560
+
563
561
{ this . renderVersionReleaseNotes ( ) }
564
562
563
+ { this . renderRecommendations ( ) }
564
+
565
565
{ this . renderAddonsByAuthorsCard ( { isForTheme : false } ) }
566
566
</ div >
567
567
</ div >
You can’t perform that action at this time.
0 commit comments