Skip to content

Commit

Permalink
feat(color): 칼라값 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
KimHunJin committed Oct 16, 2021
1 parent bd571d2 commit 0966820
Show file tree
Hide file tree
Showing 18 changed files with 116 additions and 83 deletions.
8 changes: 4 additions & 4 deletions components/about/activity/card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default ActivityCard;
line-height: 48px;
letter-spacing: -0.02em;
color: #ffffff;
color: $white;
}
.title {
margin-top: auto;
Expand All @@ -90,7 +90,7 @@ export default ActivityCard;
font-size: 18px;
line-height: 27px;
letter-spacing: -0.02em;
color: #ffffff;
color: $white;
}
}
}
Expand All @@ -114,7 +114,7 @@ export default ActivityCard;
line-height: 36px;
letter-spacing: -0.02em;
color: #ffffff;
color: $white;
}
.title {
margin-top: auto;
Expand All @@ -123,7 +123,7 @@ export default ActivityCard;
font-size: 14px;
line-height: 21px;
letter-spacing: -0.02em;
color: #ffffff;
color: $white;
}
}
}
Expand Down
14 changes: 8 additions & 6 deletions components/about/info/card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export default InfoCard;

<style lang="scss" scoped>
@import "~/assets/css/_device.scss";
@import "~/assets/css/setting.scss";
* {
font-family: Spoqa Han Sans Neo;
}
Expand All @@ -31,7 +33,7 @@ export default InfoCard;
border-radius: 16px;
width: 368px;
height: 233px;
background: #f6f6f6;
background: $grey01;
.contents {
padding: 32px;
.title {
Expand All @@ -56,7 +58,7 @@ export default InfoCard;
line-height: 27px;
letter-spacing: -0.02em;
color: #777777;
color: $grey03;
}
}
}
Expand All @@ -67,7 +69,7 @@ export default InfoCard;
border-radius: 16px;
width: 368px;
height: 233px;
background: #f6f6f6;
background: $grey01;
.contents {
padding: 32px;
.title {
Expand All @@ -92,7 +94,7 @@ export default InfoCard;
line-height: 27px;
letter-spacing: -0.02em;
color: #777777;
color: $grey03;
}
}
}
Expand All @@ -103,7 +105,7 @@ export default InfoCard;
border-radius: 16px;
width: 240px;
height: 149px;
background: #f6f6f6;
background: $grey01;
.contents {
padding: 24px;
.title {
Expand All @@ -128,7 +130,7 @@ export default InfoCard;
line-height: 21px;
letter-spacing: -0.02em;
color: #777777;
color: $grey03;
}
}
}
Expand Down
26 changes: 14 additions & 12 deletions components/about/review/card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export default ReviewCard;

<style lang="scss" scoped>
@import "~/assets/css/_device.scss";
@import "~/assets/css/setting.scss";
* {
font-family: Spoqa Han Sans Neo;
}
Expand All @@ -45,7 +47,7 @@ export default ReviewCard;
border-radius: 16px;
width: 384px;
height: 192px;
background: #f6f6f6;
background: $grey01;
.contents {
padding: 24px;
height: calc(100% - 48px);
Expand All @@ -67,7 +69,7 @@ export default ReviewCard;
letter-spacing: -0.02em;
color: #5236ff;
color: $primary;
}
.title {
font-style: normal;
Expand All @@ -76,7 +78,7 @@ export default ReviewCard;
line-height: 36px;
letter-spacing: -0.02em;
color: #000000;
color: $black;
}
.author {
margin-top: auto;
Expand All @@ -85,7 +87,7 @@ export default ReviewCard;
font-size: 18px;
line-height: 27px;
letter-spacing: -0.02em;
color: #777777;
color: $grey03;
}
}
}
Expand All @@ -96,7 +98,7 @@ export default ReviewCard;
border-radius: 16px;
width: calc(50% - 12px);
height: 192px;
background: #f6f6f6;
background: $grey01;
.contents {
padding: 24px;
height: calc(100% - 48px);
Expand All @@ -118,7 +120,7 @@ export default ReviewCard;
letter-spacing: -0.02em;
color: #5236ff;
color: $primary;
}
.title {
width: 296.5px;
Expand All @@ -136,7 +138,7 @@ export default ReviewCard;
line-height: 36px;
letter-spacing: -0.02em;
color: #000000;
color: $black;
}
.author {
margin-top: auto;
Expand All @@ -145,7 +147,7 @@ export default ReviewCard;
font-size: 18px;
line-height: 27px;
letter-spacing: -0.02em;
color: #777777;
color: $grey03;
}
}
}
Expand All @@ -156,7 +158,7 @@ export default ReviewCard;
border-radius: 8px;
width: 100%;
height: 149px;
background: #f6f6f6;
background: $grey01;
.contents {
padding: 24px;
height: calc(100% - 48px);
Expand All @@ -177,7 +179,7 @@ export default ReviewCard;
letter-spacing: -0.02em;
color: #5236ff;
color: $primary;
}
.title {
width: 100%;
Expand All @@ -195,7 +197,7 @@ export default ReviewCard;
line-height: 24px;
letter-spacing: -0.02em;
color: #000000;
color: $black;
}
.author {
margin-top: auto;
Expand All @@ -204,7 +206,7 @@ export default ReviewCard;
font-size: 14px;
line-height: 21px;
letter-spacing: -0.02em;
color: #777777;
color: $grey03;
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions components/contact/contactBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export default defineComponent({

<style lang="scss" scoped>
@import "~/assets/css/_device.scss";
@import "~/assets/css/setting.scss";
* {
font-family: Spoqa Han Sans Neo;
}
Expand All @@ -57,7 +59,7 @@ export default defineComponent({
display: flex;
flex-direction: row;
font-weight: 700;
background-color: #f6f6f6;
background-color: $grey01;
border-radius: 16px;
justify-content: space-between;
box-sizing: border-box;
Expand All @@ -67,7 +69,7 @@ export default defineComponent({
}
.text {
color: #777777;
color: $grey03;
}
}
Expand Down
3 changes: 2 additions & 1 deletion components/contact/faqBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@ export default defineComponent({

<style lang="scss" scoped>
@import "~/assets/css/_device.scss";
@import "~/assets/css/setting.scss";
.faqBox {
width: 100%;
display: flex;
flex-direction: column;
background-color: #f6f6f6;
background-color: $grey01;
box-sizing: border-box;
border-radius: 16px;
Expand Down
8 changes: 5 additions & 3 deletions components/header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ export default defineComponent({

<style lang="scss" scoped>
@import "~/assets/css/_device.scss";
@import "~/assets/css/setting.scss";
* {
font-family: Spoqa Han Sans Neo;
}
Expand Down Expand Up @@ -180,11 +182,11 @@ nav {
font-weight: bold;
line-height: 36px;
letter-spacing: -0.02em;
color: #000000;
color: $black;
text-decoration: none;
}
.white-font {
color: #ffffff;
color: $white;
}
}
Expand All @@ -205,7 +207,7 @@ nav {
@include mobile {
a.nuxt-link-active {
text-decoration: none;
color: #777777 !important;
color: $grey03 !important;
}
}
</style>
Loading

0 comments on commit 0966820

Please sign in to comment.