Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: update mat-card components #259

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div id="wrapper">
<mat-card>
<h1>Eclipse Dataspace Connector</h1>
<div>
<mat-card-header><h1>Eclipse Dataspace Connector</h1></mat-card-header>
<mat-card-content>
<p class="description">
The Eclipse Dataspace Connector provides a framework for sovereign, inter-organizational data exchange.
It implements the International Data Spaces standard (IDS) as well as relevant protocols associated with GAIA-X.
Expand All @@ -26,12 +26,12 @@ <h1>Eclipse Dataspace Connector</h1>
Onboarding Guide
</a>
</p>
</div>
</mat-card-content>
</mat-card>

<mat-card>
<h1>EDC Data Dashboard (this application)</h1>
<div>
<mat-card-header><h1>EDC Data Dashboard (this application)</h1></mat-card-header>
<mat-card-content>
<p class="description">
This EDC Data Dashboard is a developer UI for the EDC Management API.
This application is not intended for production usage and can be used to showcase EDC from a technical perspective, as the UI
Expand All @@ -58,6 +58,6 @@ <h1>EDC Data Dashboard (this application)</h1>
<li>View and create policies and apply these to assets in your Dataspace using the <a [routerLink]="['/policies']">Policies</a> page</li>
<li>Publish a new asset into your Dataspace using the <a [routerLink]="['/contract-definitions']">Contract Definitions</a> page</li>
</ul>
</div>
</mat-card-content>
</mat-card>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
}

h1 {
margin-top: 20px;
margin-bottom: 10px;
margin-top: 10px;
margin-bottom: 0px;
}

.link {
Expand All @@ -14,7 +14,6 @@ h1 {

.description {
text-align: justify;
padding-left: 20px;
padding-right: 20px;
}

Expand Down