Browse Source

Removed the unnecessary paddings

pull/158/head
malik masis 4 years ago
parent
commit
7b6c5d4d33
  1. 8
      apps/public-web/src/EShopOnAbp.PublicWeb/Components/Payment/Default.cshtml
  2. 2
      apps/public-web/src/EShopOnAbp.PublicWeb/Pages/Basket.cshtml
  3. 2
      apps/public-web/src/EShopOnAbp.PublicWeb/Pages/Index.cshtml
  4. 4
      apps/public-web/src/EShopOnAbp.PublicWeb/Pages/MyOrders.cshtml
  5. 2
      apps/public-web/src/EShopOnAbp.PublicWeb/Pages/Payment.cshtml

8
apps/public-web/src/EShopOnAbp.PublicWeb/Components/Payment/Default.cshtml

@ -7,8 +7,8 @@
<div class="row">
<div class="col-lg-9">
<div class="address-list p-5">
<h5 class="mb-5">@L["Payment:SelectAddress"]</h5>
<div class="address-list p-1">
<h5 class="mb-2">@L["Payment:SelectAddress"]</h5>
<abp-row>
@foreach (var address in Model.Address)
{
@ -28,8 +28,8 @@
</abp-row>
</div>
<div class="payment-list p-5">
<h5 class="mb-5">@L["Payment:SelectPaymentMethod"]</h5>
<div class="payment-list p-1">
<h5 class="mb-2">@L["Payment:SelectPaymentMethod"]</h5>
<abp-row>
@foreach (var paymentMethod in Model.PaymentMethods)
{

2
apps/public-web/src/EShopOnAbp.PublicWeb/Pages/Basket.cshtml

@ -11,7 +11,7 @@
@inject IStringLocalizer<EShopOnAbpResource> L
<div class="row">
<div id="BasketArea" class="pt-5">
<div id="BasketArea">
@await Component.InvokeAsync(typeof(BasketWidgetViewComponent))
</div>
</div>

2
apps/public-web/src/EShopOnAbp.PublicWeb/Pages/Index.cshtml

@ -29,7 +29,7 @@
<div class="row">
<div class="col-lg-12">
<h3 class="pt-5 pb-4 text-center">@pageHeader</h3>
<h3 class="pb-4 text-center">@pageHeader</h3>
<div class="product-list">
@for (int i = 0; i < Math.Ceiling(Model.Products.Count / (double)productsColumnSize); i++)
{

4
apps/public-web/src/EShopOnAbp.PublicWeb/Pages/MyOrders.cshtml

@ -34,7 +34,7 @@
}
}
<div class="mt-5 col">
<div class="col">
<abp-row>
<abp-column offset="_9" size="_3">
<abp-select suppress-label="true" asp-for="OrderFilter" asp-items="selectList"></abp-select>
@ -42,6 +42,6 @@
</abp-row>
</div>
<div id="UserOrdersArea" class="pt-5">
<div id="UserOrdersArea">
@await Component.InvokeAsync(typeof(UserOrderWidgetViewComponent), new {Filter = Model.OrderFilter})
</div>

2
apps/public-web/src/EShopOnAbp.PublicWeb/Pages/Payment.cshtml

@ -11,7 +11,7 @@
}
<div class="row">
<div id="PaymentArea" class="pt-5">
<div id="PaymentArea">
@await Component.InvokeAsync(typeof(PaymentWidgetViewComponent))
</div>
</div>
Loading…
Cancel
Save