_Select.cshtml 353 B

123456789101112131415
  1. @using WeApp.Views.Shared.Camp
  2. @{
  3. SelectCampModel selectModel = ViewBag.Select;
  4. ViewBag.Title = selectModel.PageTitle;
  5. }
  6. <style>
  7. .content-wrapper {
  8. padding: 0!important;
  9. }
  10. .body {
  11. width: 100% !important;
  12. height: calc(100vh - 140px) !important;
  13. }
  14. </style>
  15. @Html.Partial("Camp/_SelectCampV2",selectModel)