group detail, page refactoring

This commit is contained in:
Sylvain MATHIEU 2022-01-04 14:20:41 +01:00
parent 4911b0da66
commit a4e8dee2e1
4 changed files with 27 additions and 2 deletions

View File

@ -24,6 +24,7 @@
</button>
</div>
</div>
<mat-divider [vertical]="true"></mat-divider>
<div class="members">
<div>
<div class="title"> Members: </div>

View File

@ -1,6 +1,6 @@
.main {
display: flex;
justify-content: space-between;
justify-content: space-around;
}
.details {
@ -11,7 +11,7 @@
}
.members {
width: 40vw;
width: 30vw;
display: flex;
flex-direction: column;
justify-content: stretch;

View File

@ -1,3 +1,15 @@
/*
* Software Name : GNS3 Web UI
* Version: 3
* SPDX-FileCopyrightText: Copyright (c) 2022 Orange Business Services
* SPDX-License-Identifier: GPL-3.0-or-later
*
* This software is distributed under the GPL-3.0 or any later version,
* the text of which is available at https://www.gnu.org/licenses/gpl-3.0.txt
* or see the "LICENSE" file for more details.
*
* Author: Sylvain MATHIEU, Elise LEBEAU
*/
export enum Methods {
GET = 'GET',
HEAD = 'HEAD',

View File

@ -1,3 +1,15 @@
/*
* Software Name : GNS3 Web UI
* Version: 3
* SPDX-FileCopyrightText: Copyright (c) 2022 Orange Business Services
* SPDX-License-Identifier: GPL-3.0-or-later
*
* This software is distributed under the GPL-3.0 or any later version,
* the text of which is available at https://www.gnu.org/licenses/gpl-3.0.txt
* or see the "LICENSE" file for more details.
*
* Author: Sylvain MATHIEU, Elise LEBEAU
*/
import { Injectable } from '@angular/core';
import {HttpServer} from "./http-server.service";
import {Server} from "../models/server";