Skip to content

Commit 2460751

Browse files
committed
(style) - Fix style card EventTalksGroup
1 parent 7f9afa3 commit 2460751

File tree

2 files changed

+17
-19
lines changed

2 files changed

+17
-19
lines changed

mobile/src/components/events/EventTalksGroup.vue

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,22 @@ const {userEventTalkNotesRef} = useUserEventTalkNotes(eventIdRef, talksIdsRef)
4949
</script>
5050

5151
<style lang="scss" scoped>
52+
img {
53+
position: absolute;
54+
top: 0;
55+
left: 0;
56+
display: block;
57+
height: 100%;
58+
width: 100%;
59+
z-index: -1;
60+
object-fit: cover;
61+
border-radius: 16px;
62+
}
5263
64+
.schedule-talk-event-title {
65+
padding: 16px 12px;
66+
font-size: 18px;
67+
font-weight: bold;
68+
color: var(--app-white);
69+
}
5370
</style>

mobile/src/views/user/ViewableTalksHavingFeedbacksPage.vue

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -128,24 +128,5 @@ function openTalkDetails(talk: VoxxrinTalk) {
128128
margin: 16px;
129129
padding: 8px 4px;
130130
border-radius: 16px;
131-
132-
img {
133-
position: absolute;
134-
top: 0;
135-
left: 0;
136-
display: block;
137-
height: 100%;
138-
width: 100%;
139-
z-index: -1;
140-
object-fit: cover;
141-
border-radius: 16px;
142-
}
143-
144-
&-title {
145-
padding: 16px 12px;
146-
font-size: 18px;
147-
font-weight: bold;
148-
color: var(--app-white);
149-
}
150131
}
151132
</style>

0 commit comments

Comments
 (0)