Moved Pokemon Page files into corresponding Page folder w/in directory.

This commit is contained in:
Kira Jiroux 2025-04-07 13:59:56 -04:00
parent 8f1dbebb30
commit 9c87f3e4cf
17 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
 
<!-- Heading + Buttons --> <!-- Heading + Buttons -->
<div class="top-row row w-100 mx-0 bg-secondary py-3"> <div class="top-row row rounded-bottom-5 w-100 bg-secondary py-3">
<div class="col-4"></div> <div class="col-4"></div>

View File

@ -7,7 +7,7 @@
<!-- Main UI --> <!-- Main UI -->
<div class="card shadow border-0 mt-4 m-auto w-50"> <div class="card shadow border-0 mt-4 m-auto w-75">
<!-- Table Header --> <!-- Table Header -->
<div class="card-header bg-secondary bg-gradient ml-0 py-3"> <div class="card-header bg-secondary bg-gradient ml-0 py-3">
@ -26,13 +26,13 @@
<!-- Table Head --> <!-- Table Head -->
<thead> <thead>
<tr> <tr>
<th class="text-bg-info col col-2" scope="col"></th> <th class="text-bg-info col" scope="col"></th>
<th class="text-bg-info col pokemon-dex-width" scope="col">#</th> <th class="text-bg-info col pokemon-dex-width" scope="col">#</th>
<th class="text-bg-info col pokemon-name-width" scope="col">Pokemon</th> <th class="text-bg-info col pokemon-name-width" scope="col">Pokemon</th>
<th class="text-bg-info col pokemon-type-width" scope="col">Type</th> <th class="text-bg-info col " scope="col">Type</th>
<th class="text-bg-info col pokemon-type-width" scope="col">Sleep Type</th> <th class="text-bg-info col " scope="col">Sleep Type</th>
<th class="text-bg-info col pokemon-type-width" scope="col">Speciality</th> <th class="text-bg-info col " scope="col">Speciality</th>
<th class="text-bg-info col pokemon-type-width" scope="col"></th> <th class="text-bg-info col " scope="col"></th>
</tr> </tr>
</thead> </thead>
@if(pokemons == null) @if(pokemons == null)

View File

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.Web;
using Portfolio.Domain.Features.Pokemon; using Portfolio.Domain.Features.Pokemon;
namespace Portfolio.WebUI.Server.Components.Pages namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
{ {
public partial class PokemonCreate public partial class PokemonCreate
{ {

View File

@ -2,7 +2,7 @@
using Microsoft.JSInterop; using Microsoft.JSInterop;
using Portfolio.Domain.Features.Pokemon; using Portfolio.Domain.Features.Pokemon;
namespace Portfolio.WebUI.Server.Components.Pages namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
{ {
public partial class PokemonEdit public partial class PokemonEdit
{ {

View File

@ -3,7 +3,7 @@ using Portfolio.Domain.Features.Pokemon;
using Portfolio.Domain.Features.Pokemon_Natures; using Portfolio.Domain.Features.Pokemon_Natures;
using Portfolio.Domain.Features.Pokemon_Subskills; using Portfolio.Domain.Features.Pokemon_Subskills;
namespace Portfolio.WebUI.Server.Components.Pages namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
{ {
public partial class PokemonRate public partial class PokemonRate
{ {

View File

@ -1,7 +1,7 @@
using Portfolio.Application.Services.PokemonService; using Portfolio.Application.Services.PokemonService;
using Portfolio.Domain.Features.Pokemon; using Portfolio.Domain.Features.Pokemon;
namespace Portfolio.WebUI.Server.Components.Pages namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
{ {
public partial class PokemonSleep public partial class PokemonSleep
{ {

View File

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components;
using Portfolio.Domain.Features.Pokemon; using Portfolio.Domain.Features.Pokemon;
namespace Portfolio.WebUI.Server.Components.Pages namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
{ {
public partial class PokemonView public partial class PokemonView
{ {