fix log parser not using full width for log

This commit is contained in:
Jesse Plamondon-Willard 2018-06-11 10:56:59 -04:00
parent c41e1ed5c1
commit 6c08f77425
3 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,7 @@
}
@model StardewModdingAPI.Web.ViewModels.IndexModel
@section Head {
<link rel="stylesheet" href="~/Content/css/index.css" />
<link rel="stylesheet" href="~/Content/css/index.css?r=20180611" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" crossorigin="anonymous"></script>
<script src="~/Content/js/index.js"></script>
}

View File

@ -12,10 +12,10 @@
{
<meta name="robots" content="noindex" />
}
<link rel="stylesheet" href="~/Content/css/log-parser.css?r=20180603" />
<link rel="stylesheet" href="~/Content/css/log-parser.css?r=20180611" />
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" crossorigin="anonymous"></script>
<script src="~/Content/js/log-parser.js?r=20180603"></script>
<script src="~/Content/js/log-parser.js?r=20180611"></script>
<script>
$(function() {
smapi.logParser({

View File

@ -1,6 +1,10 @@
/*********
** Main layout
*********/
#content {
max-width: 100%;
}
caption {
text-align: left;
padding-top: 2px;