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
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -13,7 +13,7 @@
|
||||
"stopAtEntry": false,
|
||||
"serverReadyAction": {
|
||||
"action": "openExternally",
|
||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
|
||||
"pattern": "\\bNow listening on:\\s+(http://\\S+)",
|
||||
"uriFormat": "%s/swagger/index.html"
|
||||
},
|
||||
"env": {
|
||||
|
||||
@ -120,13 +120,22 @@ builder.Services.AddSwaggerGen(option =>
|
||||
// }));
|
||||
builder.Services.AddCors(options =>
|
||||
{
|
||||
|
||||
options.AddPolicy("CORS", policy =>
|
||||
{
|
||||
policy
|
||||
.WithOrigins("http://dev.biodec.saludlab.com.ar", "http://phroncareUI:80", "http://192.168.10.110:9002")
|
||||
.AllowAnyMethod()
|
||||
.AllowAnyHeader()
|
||||
.AllowCredentials();
|
||||
/*
|
||||
Version para despliegue
|
||||
*/
|
||||
// policy
|
||||
// .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
|
||||
|
||||
@ -13,6 +13,6 @@
|
||||
color: white;
|
||||
padding: 8px 8px 8px 8px;
|
||||
border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
|
||||
border-radius: 5px;
|
||||
border-radius: 0.5em;
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -16,12 +16,12 @@
|
||||
<div class="container-fluid" style="background-color: rgba(39, 54, 97, 0.5);">
|
||||
<div class="row">
|
||||
<div class="top-row px-1">
|
||||
<div class="col-md-8" style="zoom:50%">
|
||||
<PhToggle Caption=" " ToggleStateChanged="OnChangeToggleSwitchState" ToggleState=@state >
|
||||
<div class="col-md-4" style="zoom:50%">
|
||||
<PhToggle ToggleStateChanged="OnChangeToggleSwitchState" ToggleState=@state >
|
||||
<i class="fas fa-moon fa-2xl"/>
|
||||
</PhToggle>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-8" style="text-align: right;">
|
||||
<LoginView />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -7,6 +7,6 @@
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
// "Basead": "http://localhost:5243"
|
||||
"Basead": "http://localhost:9000"
|
||||
"Basead": "http://localhost:5243"
|
||||
// "Basead": "http://localhost:9000"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user