Skip to content

Commit

Permalink
(update) cores corretas das fontes
Browse files Browse the repository at this point in the history
  • Loading branch information
papatrock committed Aug 12, 2024
1 parent b2b0bf6 commit b5040f7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
<mc-icon v-else name="seal" alt="Placeholder Image">
</div>
<div class="seal-header">
<h3>{{seal.name}}</h3>
<h3 class="seal-name">{{seal.name}}</h3>
<!-- <input type="checkbox" id="show-on-profile" name="show-on-profile" />
<label for="show-on-profile">Mostrar no perfil</label> -->
</div>
<p><b>Criador do selo: </b>{{seal.sealRelationFullData.seal.owner.name}}</p>
<p><b>Selo atribuido por: </b>{{seal.sealRelationFullData.agent.name}}</p>
<p><b>Criador do selo: </b><span class="seal-creator">{{seal.sealRelationFullData.seal.owner.name}}</span></p>
<p><b>Selo atribuido por: </b><span class="seal-creator">{{seal.sealRelationFullData.agent.name}}</span></p>
<p><b>Descrição curta: </b>{{seal.sealRelationFullData.seal.shortDescription}}</p>
<p><mc-icon name="date"></mc-icon> Data de recebimento do selo: {{ formatReceivedDate(seal) }}</p>
<p><mc-icon name="date"></mc-icon> Validade do selo: {{ formatValidDate(seal) }}</p>
Expand Down Expand Up @@ -90,7 +90,7 @@
<!-- <input type="checkbox" id="show-on-profile" name="show-on-profile" />
<label for="show-on-profile">Mostrar no perfil</label> -->
</div>
<p><b>Criador do selo: </b>{{seal.sealRelationFullData.seal.owner.name}}</p>
<p class="seal-creator"><b>Criador do selo: </b>{{seal.sealRelationFullData.seal.owner.name}}</p>
<p><b>Selo atribuido por: </b>{{seal.sealRelationFullData.agent.name}}</p>
<p><b>Descrição curta: </b>{{seal.sealRelationFullData.seal.shortDescription}}</p>
<p><mc-icon name="date"></mc-icon> Data de recebimento do selo: {{ formatReceivedDate(seal) }}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
.seals-relations-background {
padding: 30px;
background-color: white;

p {
font-size: 14px;
color: #666;
}
grid-template-columns: 100% 32%;

hr {
border: 0;
Expand Down Expand Up @@ -47,7 +43,7 @@

h3 {
font-size: 18px;
color: #333;
color: $projects-500;
margin: 0;
}

Expand All @@ -66,18 +62,26 @@
p {
margin: 10px 0;
font-size: 14px;
color: #666;
font-family: $font-headings

b {
color: #333;
color: #000000;
font-weight: $font-weight-bold;
}

mc-icon {
margin-right: 5px;
color: #999;
}

}

.seal-creator {
color: $projects-500;
font-weight: $font-weight-bold;
}


.seal-footer {
margin-top: 20px;
text-align: right;
Expand Down

0 comments on commit b5040f7

Please sign in to comment.