Skip to content

Commit e505f87

Browse files
committed
Fix styles.
1 parent 1b3eaeb commit e505f87

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Web/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ WORKDIR /app
77
EXPOSE 8080
88
EXPOSE 8081
99

10-
1110
# This stage is used to build the service project
1211
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
1312
ARG BUILD_CONFIGURATION=Release

Web/Pages/Shared/_Layout.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>@ViewData["Title"] - GitHub Organization Management</title>
7-
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
7+
<link rel="stylesheet" href="~/lib/bootstrap/css/bootstrap.min.css" />
88
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
99
<link rel="stylesheet" href="~/Web.styles.css" asp-append-version="true" />
1010
</head>
@@ -49,8 +49,8 @@
4949
</div>
5050
</footer>
5151

52-
<script src="~/lib/jquery/dist/jquery.min.js"></script>
53-
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
52+
<script src="~/lib/jquery/jquery.min.js"></script>
53+
<script src="~/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
5454
<script src="~/js/site.js" asp-append-version="true"></script>
5555

5656
@await RenderSectionAsync("Scripts", required: false)

0 commit comments

Comments
 (0)