Skip to content

Commit 8e33ab8

Browse files
committed
スタイルを修正した
1 parent e8cb5fc commit 8e33ab8

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

apps/web/app/components/SpeakerPageSection.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const { sessionSpeakers, lightningTalkSpeakers, sponsorSessionSpeakers } = props
5757

5858
<section v-if="lightningTalkSpeakers.list.length !== 0" id="lightning-talks" class="speaker-section">
5959
<h3 class="speaker-subtitle">Lightning Talks</h3>
60-
<p>
60+
<p class="speaker-lt-description">
6161
{{ $t('speaker.lt_description') }}
6262
</p>
6363
<ul class="speaker-cards">
@@ -210,9 +210,17 @@ const { sessionSpeakers, lightningTalkSpeakers, sponsorSessionSpeakers } = props
210210
}
211211
212212
.speaker-hr {
213-
padding: 50px 0;
213+
margin: 50px 0;
214+
padding: 0;
214215
border: 0;
215216
border-bottom: 1px solid var(--color-vue-blue);
217+
opacity: 0.4;
218+
}
219+
220+
.speaker-lt-description {
221+
margin: calc(var(--unit) * 2) 0 0;
222+
font-size: 18px;
223+
line-height: 1.8;
216224
}
217225
218226
@media (--tablet) {

packages/ui/components/store/Product.vue

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,24 @@ const props = defineProps<StoreItemProps>()
3333

3434
<style scoped>
3535
.store-item {
36-
width: 308px;
37-
display: flex;
38-
flex-direction: column;
39-
gap: 1em;
36+
width: 288px;
4037
color: var(--color-vue-blue);
4138
}
4239
4340
.store-item img {
4441
border: 1px solid #DCE1E5;
42+
border-radius: 8px;
4543
}
4644
4745
.name {
46+
margin-top: 16px;
47+
font-size: 18px;
4848
font-weight: bold;
4949
line-height: 1;
5050
}
5151
5252
.explain {
53-
width: 308px;
53+
margin-top: 8px;
5454
white-space: pre-wrap;
5555
5656
&::v-deep(a) {
@@ -62,14 +62,24 @@ const props = defineProps<StoreItemProps>()
6262
opacity: 0.4;
6363
transition: .2s;
6464
}
65+
66+
&::v-deep(p) {
67+
font-size: 18px;
68+
line-height: 1.8;
69+
}
6570
}
6671
6772
.price {
73+
margin-top: 4px;
6874
font-size: 22px;
6975
font-weight: bold;
7076
line-height: 1;
7177
}
7278
79+
.supplement {
80+
margin-top: 16px;
81+
}
82+
7383
@media (max-width: 768px) {
7484
.store-item {
7585
--img-size: 232px;

0 commit comments

Comments
 (0)