增加container宽度100%

This commit is contained in:
falcon 2020-06-24 14:29:54 +08:00
parent 8be45247a9
commit 282e578686
3 changed files with 9 additions and 2 deletions

View File

@ -6,7 +6,7 @@
</style>
<div id="reportMain" class="row">
<div id="accd" class="col-3">
<div id="accd" class="col-2">
<div class="card" v-for="g in reportList.s" v-if="g.t==1">
<div class="card-header">
<a class="card-link" data-toggle="collapse" :href="'#id'+g.n">{{g.n}}</a>

View File

@ -18,7 +18,9 @@
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light border-bottom box-shadow mb-3 headbar">
<div class="container">
<img alt="" src="~/images/logo75.png" class="logo" />
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">自定义报表服务</a>
<h1>
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">自定义报表服务</a>
</h1>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>

View File

@ -106,3 +106,8 @@ body {
.reportTable td {
}
/*bootstrap样式重写*/
.container {
max-width: 100%;
}