Ajuste TopRow en UI v2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m35s
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m35s
This commit is contained in:
parent
604cab26ae
commit
6d9e49c252
54
.vscode/launch.json
vendored
54
.vscode/launch.json
vendored
@ -1,31 +1,31 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
// Configuración existente de la API (no modificar)
|
// Configuración existente de la API (no modificar)
|
||||||
{
|
{
|
||||||
"name": "Launch phronCare API",
|
"name": "Launch phronCare API",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"preLaunchTask": "build",
|
"preLaunchTask": "build",
|
||||||
"program": "${workspaceFolder}/phronCare.API/bin/Debug/net8.0/phronCare.API.dll",
|
"program": "${workspaceFolder}/phronCare.API/bin/Debug/net8.0/phronCare.API.dll",
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}/phronCare.API",
|
"cwd": "${workspaceFolder}/phronCare.API",
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"serverReadyAction": {
|
"serverReadyAction": {
|
||||||
"action": "openExternally",
|
"action": "openExternally",
|
||||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
|
"pattern": "\\bNow listening on:\\s+(http://\\S+)",
|
||||||
"uriFormat": "%s/swagger/index.html"
|
"uriFormat": "%s/swagger/index.html"
|
||||||
},
|
},
|
||||||
"env": {
|
"env": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development",
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
"ASPNETCORE_CONFIGURATION": "appsettings.json"
|
"ASPNETCORE_CONFIGURATION": "appsettings.json"
|
||||||
},
|
},
|
||||||
"sourceFileMap": {
|
"sourceFileMap": {
|
||||||
"/Views": "${workspaceFolder}/Views"
|
"/Views": "${workspaceFolder}/Views"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Nueva configuración para Blazor WebAssembly
|
// Nueva configuración para Blazor WebAssembly
|
||||||
{
|
{
|
||||||
"name": "Launch Blazor WASM",
|
"name": "Launch Blazor WASM",
|
||||||
"type": "blazorwasm",
|
"type": "blazorwasm",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
|
|||||||
@ -120,13 +120,22 @@ builder.Services.AddSwaggerGen(option =>
|
|||||||
// }));
|
// }));
|
||||||
builder.Services.AddCors(options =>
|
builder.Services.AddCors(options =>
|
||||||
{
|
{
|
||||||
|
|
||||||
options.AddPolicy("CORS", policy =>
|
options.AddPolicy("CORS", policy =>
|
||||||
{
|
{
|
||||||
policy
|
/*
|
||||||
.WithOrigins("http://dev.biodec.saludlab.com.ar", "http://phroncareUI:80", "http://192.168.10.110:9002")
|
Version para despliegue
|
||||||
.AllowAnyMethod()
|
*/
|
||||||
.AllowAnyHeader()
|
// policy
|
||||||
.AllowCredentials();
|
// .WithOrigins("http://dev.biodec.saludlab.com.ar", "http://phroncareUI:80", "http://192.168.10.110:9002")
|
||||||
|
// .AllowAnyMethod()
|
||||||
|
// .AllowAnyHeader()
|
||||||
|
// .AllowCredentials();
|
||||||
|
|
||||||
|
/*
|
||||||
|
Version para desarrollo
|
||||||
|
*/
|
||||||
|
policy.WithOrigins("*").AllowAnyHeader().AllowAnyMethod();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@ -13,6 +13,6 @@
|
|||||||
color: white;
|
color: white;
|
||||||
padding: 8px 8px 8px 8px;
|
padding: 8px 8px 8px 8px;
|
||||||
border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
|
border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
|
||||||
border-radius: 5px;
|
border-radius: 0.5em;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@ -16,12 +16,12 @@
|
|||||||
<div class="container-fluid" style="background-color: rgba(39, 54, 97, 0.5);">
|
<div class="container-fluid" style="background-color: rgba(39, 54, 97, 0.5);">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="top-row px-1">
|
<div class="top-row px-1">
|
||||||
<div class="col-md-8" style="zoom:50%">
|
<div class="col-md-4" style="zoom:50%">
|
||||||
<PhToggle Caption=" " ToggleStateChanged="OnChangeToggleSwitchState" ToggleState=@state >
|
<PhToggle ToggleStateChanged="OnChangeToggleSwitchState" ToggleState=@state >
|
||||||
<i class="fas fa-moon fa-2xl"/>
|
<i class="fas fa-moon fa-2xl"/>
|
||||||
</PhToggle>
|
</PhToggle>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-8" style="text-align: right;">
|
||||||
<LoginView />
|
<LoginView />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -7,6 +7,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"AllowedHosts": "*",
|
"AllowedHosts": "*",
|
||||||
// "Basead": "http://localhost:5243"
|
"Basead": "http://localhost:5243"
|
||||||
"Basead": "http://localhost:9000"
|
// "Basead": "http://localhost:9000"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user