UNCLASSIFIED

You need to sign in or sign up before continuing.
Commit 35ccd4a5 authored by Baban Faraj's avatar Baban Faraj
Browse files

Add css to keep fonts of the text from cards consistent

parent a60248ae
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
<v-card-actions> <v-card-actions>
<v-layout row justify-center class="project-card-detail"> <v-layout row justify-center class="project-card-detail">
<v-card-text v-if="project.latestPipeline"> <v-card-text v-if="project.latestPipeline">
<div class="project-card-pipeline-name"> <div class="project-card-text">
Pipeline: {{ project.latestPipeline.message }} Pipeline: {{ project.latestPipeline.message }}
</div> </div>
</v-card-text> </v-card-text>
...@@ -317,7 +317,9 @@ ...@@ -317,7 +317,9 @@
:key="jIndex" :key="jIndex"
:to="job.link" :to="job.link"
> >
<a :href="job.link" target="_blank">{{ job.name }}; </a> <a class="project-card-text" :href="job.link" target="_blank"
>{{ job.name }};
</a>
</router-link> </router-link>
</v-layout> </v-layout>
</v-card-actions> </v-card-actions>
...@@ -464,6 +466,9 @@ export default { ...@@ -464,6 +466,9 @@ export default {
padding-left: 45px; padding-left: 45px;
padding-right: 45px; padding-right: 45px;
} }
.project-card-text {
font-size: medium;
}
.card { .card {
min-height: 100%; min-height: 100%;
min-width: 100%; min-width: 100%;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment