Skip to content

Commit e36613b

Browse files
authored
Merge pull request #24087 from abpframework/10.0-features-modal-fix
Fix Features modal padding
2 parents 99450c6 + df33090 commit e36613b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Pages/FeatureManagement/FeatureManagementModal.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<h4>@featureGroup.DisplayName</h4>
4242
<hr class="mt-2 mb-3"/>
4343
<div class="custom-scroll-content" style="height: 400px;">
44-
<div class="pl-1 pt-1">
44+
<div class="ps-1 pt-1">
4545
@for (var j = 0; j < featureGroup.Features.Count; j++)
4646
{
4747
var feature = featureGroup.Features[j];

modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Components/PermissionManagementModal.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
@foreach (var group in _groups)
6565
{
6666
<TabPanel Name="@GetNormalizedGroupName(group.Name)">
67-
<div class="w-100" style="height: 500px;overflow-y: auto">
67+
<div class="w-100 ps-1" style="height: 500px;overflow-y: auto">
6868
<Field>
6969
<Check
7070
Disabled="@(IsPermissionGroupDisabled(group))"

0 commit comments

Comments
 (0)