Skip to content

Commit

Permalink
fix(about): 정보 카드 폰트 사이즈 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
mcauto committed Oct 27, 2021
1 parent 439658d commit a111f85
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions components/about/info/card.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div class="info-container">
<div class="contents">
<p class="title">{{ title }}</p>
<p class="value">{{ value }}</p>
<h4 class="title">{{ title }}</h4>
<h2 class="value">{{ value }}</h2>
<p class="description">{{ description }}</p>
</div>
</div>
Expand Down Expand Up @@ -31,8 +31,7 @@ export default InfoCard;
@include desktop {
.info-container {
border-radius: 16px;
width: 368px;
height: 233px;
width: 100%;
background: $grey01;
.contents {
padding: 32px;
Expand All @@ -46,8 +45,8 @@ export default InfoCard;
.value {
font-style: normal;
font-weight: bold;
font-size: 60px;
line-height: 90px;
font-size: 48px;
line-height: 64px;
margin-bottom: 8px;
letter-spacing: -0.02em;
}
Expand All @@ -68,7 +67,6 @@ export default InfoCard;
flex: 0 0 auto;
border-radius: 16px;
width: 368px;
height: 233px;
background: $grey01;
.contents {
padding: 32px;
Expand All @@ -82,8 +80,8 @@ export default InfoCard;
.value {
font-style: normal;
font-weight: bold;
font-size: 60px;
line-height: 90px;
font-size: 48px;
line-height: 64px;
margin-bottom: 8px;
letter-spacing: -0.02em;
}
Expand All @@ -104,7 +102,6 @@ export default InfoCard;
flex: 0 0 auto;
border-radius: 8px;
width: 240px;
height: 149px;
background: $grey01;
.contents {
padding: 24px;
Expand Down

0 comments on commit a111f85

Please sign in to comment.