Skip to content

Commit 92ae782

Browse files
committed
add some changes
1 parent 17208b4 commit 92ae782

1 file changed

Lines changed: 37 additions & 19 deletions

File tree

src/components/core/taxonList/TaxonNewDetailed.vue

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
v-if="props.audio?.url"
3939
:audio="props.audio"
4040
variant="button"
41-
:size="35"
41+
:size="45"
4242
class="audio-overlay"
4343
></AudioPlayer>
4444
</div>
@@ -68,31 +68,28 @@
6868
corporis nesciunt ad dolore? Id nemo qui cum harum adipisci.
6969
</div>
7070
<div class="credits">
71-
<strong>Credits</strong>
71+
<div class="credits-header">
72+
<h5>Credits</h5>
73+
</div>
7274
<div v-if="props.audio" class="subcredits">
73-
<strong>Audio :</strong>
74-
<Credits
75-
:media="props.audio"
76-
link-color="link-dark"
77-
class=""
78-
></Credits>
75+
<i class="bi bi-music-note-beamed"></i>
76+
<Credits :media="props.audio" link-color="link-dark"></Credits>
7977
</div>
8078
<div v-if="props.picture" class="subcredits">
81-
<strong>Picture </strong>
79+
<i class="bi bi-camera"></i>
8280
<Credits
8381
:media="props.picture"
8482
link-color="link-dark"
85-
class="ml-1"
8683
></Credits>
8784
</div>
8885
</div>
8986
</div>
9087
</template>
9188
<style scoped>
9289
.detailed {
93-
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
90+
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
9491
display: flex;
95-
justify-content: space-between;
92+
justify-content: start;
9693
flex-direction: column;
9794
border-radius: 5px;
9895
}
@@ -141,17 +138,34 @@
141138
}
142139
.credits {
143140
padding: 1em;
141+
}
142+
143+
.credits-header {
144+
display: flex;
145+
align-items: center;
146+
gap: 0.5em;
147+
color: #666;
148+
149+
i {
150+
font-size: 1.1rem;
151+
}
152+
144153
strong {
145-
color: #666;
146-
font-size: 1.4rem;
154+
font-size: 1.2rem;
155+
font-weight: 600;
147156
}
148157
}
158+
149159
.subcredits {
150160
display: flex;
151-
flex-direction: row;
152-
gap: 5px;
153-
padding-left: 1em;
154-
strong {
161+
align-items: center;
162+
gap: 0.5em;
163+
font-size: 0.85rem;
164+
color: #666;
165+
margin-left: 1em;
166+
167+
i {
168+
color: #888;
155169
font-size: 1rem;
156170
}
157171
}
@@ -167,9 +181,14 @@
167181
flex-direction: column;
168182
color: #666;
169183
text-align: center;
184+
background-color: rgba(239, 239, 239, 0.5);
185+
padding: 1em;
186+
border-radius: 5px;
170187
strong {
171188
color: #444;
172189
}
190+
width: 50%;
191+
font-size: 0.9rem;
173192
}
174193
.names {
175194
text-align: center;
@@ -184,7 +203,6 @@
184203
}
185204
.description {
186205
padding: 1em;
187-
background-color: #efefef;
188206
color: #666;
189207
font-size: 0.8rem;
190208
text-align: center;

0 commit comments

Comments
 (0)