Made game thumbnails fluid
This commit is contained in:
parent
d88ca6d216
commit
af9196bca0
1 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ async function loadWishlistedGames() {
|
|||
{
|
||||
data: 'thumbnail_url',
|
||||
render: function (data,type){
|
||||
return '<img src="' + data + '" />'
|
||||
return '<img src="' + data + '" class="img-fluid" />'
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -91,7 +91,7 @@ async function loadOwnedGames() {
|
|||
{
|
||||
data: 'thumbnail_url',
|
||||
render: function (data,type){
|
||||
return '<img src="' + data + '" />'
|
||||
return '<img src="' + data + '" class="img-fluid" />'
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue