Skip to content

Commit

Permalink
grid improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpreston24 committed Mar 6, 2024
1 parent 977e2ad commit 44f16d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</h1>


<section x-data="{}" class="vertical-padding flex flex-col gap-10">
<section x-data="{}" class="vertical-padding grid grid-cols-2 grid-rows-auto gap-10">
<partial name="_CarouselCard" model="@recce_card"/>
<partial name="_CarouselCard" model="@pcc_card"/>
<partial name="_CarouselCard" model="@long_rifle_card"/>
Expand Down
2 changes: 2 additions & 0 deletions nugsnet6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<NoWarn>
CS0414;CS8602;CS1998;CS0168;CS8605;CS8603;CS8625;CS8604;CS8600;CS8601;CS8620;CS8618;CS4014;CS8619;CS8765;CS0105;CS8767;CS0659;CS8619;CS0219;
</NoWarn>

<AccelerateBuildsInVisualStudio>True</AccelerateBuildsInVisualStudio>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"scripts": {
"dev": "dotnet watch run --quiet --no-hot-reload --urls http://127.1.1.0:8080",
"dev": "dotnet watch run --quiet --urls http://127.1.1.0:8080",
"start": "dotnet run --configuration Release --urls http://127.1.1.0:8080",
"debug": "dotnet run bin/Debug/net7.0/nugsnet6.dll --urls http://127.1.1.0:8080",
"release": "dotnet run /bin/Release --urls http://127.1.1.0:8080",
"build": "yarn && npm i && dotnet build -v q && yarn buildcss:linux",
"publish": "dotnet publish -c Release",
"restore": "dotnet restore",
"buildcss:linux": "npx tailwindcss -i ./Styles/app.css -o ./wwwroot/css/site.css",
"desktop": "electronize-h5 start /watch",
"nuke": "rm -rf node_modules wwwroot/lib wwwroot/css bin obj",
"reinstall": "npm run nuke && yarn && npm i && npm run buildcss:linux",
"quickstart": "bash quickstart.sh",
Expand Down

0 comments on commit 44f16d7

Please sign in to comment.