From 6fb254947773a444caf7b396d01db15146dcd75f Mon Sep 17 00:00:00 2001 From: Charley DAVID Date: Sun, 21 May 2017 12:25:19 -0300 Subject: [PATCH] Fix layout on big screens --- app/views/games/index.slim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/games/index.slim b/app/views/games/index.slim index a2fadd1..13bbf78 100644 --- a/app/views/games/index.slim +++ b/app/views/games/index.slim @@ -4,7 +4,7 @@ table.table.table-responsive th Cover th Code th Region - th Title + th style="width:100%;min-width:200px" Title th eShop ID (nsuid) th Release date tbody.games @@ -17,7 +17,7 @@ table.table.table-responsive = cover ? image_tag(cover, style: 'max-width:120px;max-height:120px;', class: 'rounded mx-auto d-block', title: 'wat') : nil td.game--code rowspan=games.count = game.game_code td.game--region = game.region - td.game--title.text-overflow = game.title + td.game--title.text-overflow style="width:100%;max-width:0" = game.title td.game--nsuid = game.nsuid || 'NA' td.game--release-date time.text-overflow datetime=game.release_date.iso8601 = game.release_date.strftime("%b #{game.release_date.day.ordinalize}, %Y")