fix log parser not using full width for log
This commit is contained in:
parent
c41e1ed5c1
commit
6c08f77425
|
@ -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>
|
||||
}
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
/*********
|
||||
** Main layout
|
||||
*********/
|
||||
#content {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
caption {
|
||||
text-align: left;
|
||||
padding-top: 2px;
|
||||
|
|
Loading…
Reference in New Issue