Skip to content

Commit

Permalink
Fix display issue on long menus (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBleijendaal committed Apr 29, 2024
1 parent 34fc135 commit 885a488
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/RapidCMS.Repositories/RapidCMS.Repositories.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.25" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.1" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
Expand Down
2 changes: 1 addition & 1 deletion src/RapidCMS.UI/RapidCMS.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<PackageReference Include="Blazored.LocalStorage" Version="4.4.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.25" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.25" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.1" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
Expand Down
2 changes: 1 addition & 1 deletion src/RapidCMS.UI/wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ thead td:hover .icon {
width: 100px;
position: fixed;
top: 3.5rem;
height: 100vh;
height: calc(100vh - 3.5rem);
overflow-x: hidden;
background-color: #fff;
padding-top: 1rem;
Expand Down

0 comments on commit 885a488

Please sign in to comment.