File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ function RoleSetArticle(): ReactElement {
218
218
< WikiStyledText > { "# " + translate ( "wiki.article.generated.roleSet.title" ) } </ WikiStyledText >
219
219
</ section >
220
220
< Masonry columnsCount = { columnCount } >
221
- { ROLE_SETS . map ( set => {
221
+ { ROLE_SETS . filter ( set => set !== "any" ) . map ( set => {
222
222
const description = translateChecked ( `${ set } .description` ) ;
223
223
return < div key = { set } className = "masonry-item" >
224
224
< PageCollection
Original file line number Diff line number Diff line change 99
99
text-align : left;
100
100
}
101
101
.wiki-cover-card , .anchor-cover-card .wiki-article {
102
- max-width : 50rem ;
102
+ width : 100% ;
103
+ }
104
+ .wiki-cover-card {
105
+ width : 80rem ;
106
+ min-height : 60vh ;
103
107
}
104
108
.role-set-article .masonry-item {
105
109
text-align : center;
Original file line number Diff line number Diff line change 85
85
border-bottom-color : var (--background-border-shadow-color );
86
86
overflow-y : hidden;
87
87
box-shadow : 0 0 .5rem # 0007 ;
88
+
89
+ max-width : 90vw ;
90
+ max-height : 90vh ;
88
91
}
89
92
90
93
.anchor-cover-card-content {
You can’t perform that action at this time.
0 commit comments