Skip to content

Commit c2cd4ea

Browse files
authored
Merge pull request #385 from sparcs-kaist/design/color
Design: color
2 parents 24a23a6 + 3efca83 commit c2cd4ea

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
<meta http-equiv="X-UA-Compatible" content="IE=edge">
1616
<meta name="viewport" content="width=device-width,initial-scale=1.0">
17-
<meta name="theme-color" content="#e15858">
18-
<meta name="apple-mobile-web-app-status-bar-style" content="#e15858">
17+
<meta name="theme-color" content="#ed3a3a">
18+
<meta name="apple-mobile-web-app-status-bar-style" content="#ed3a3a">
1919
<link href="./img/icons/ara-pwa-192.png" rel="icon" sizes="192x192">
2020
<link href="./img/icons/ara-pwa-512.png" rel="icon" sizes="512x512">
2121
<link rel="apple-touch-icon" href="./img/icons/ara-pwa-512-wb.png">

public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
"scope": "/",
1818
"display": "standalone",
1919
"background_color": "#000000",
20-
"theme_color": "#e15858"
20+
"theme_color": "#ed3a3a"
2121
}

src/components/SmallBoard.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ en:
9696
width: 30px;
9797
background-color: var(--theme-400);
9898
margin-bottom: 1em;
99+
margin-left: 1.2rem;
99100
@include breakPoint(mobile) {
100101
margin: 0 auto;
101102
margin-bottom: 14px;
@@ -109,6 +110,7 @@ en:
109110
font-size: 18px;
110111
font-weight: 700;
111112
margin-bottom: 0.7em;
113+
padding-left: 1rem;
112114
113115
span {
114116
width: 100%
@@ -193,6 +195,7 @@ en:
193195
&--sidebar & {
194196
&__name {
195197
font-size: 15px;
198+
padding-left: 0;
196199
}
197200
198201
&__post {
@@ -209,5 +212,9 @@ en:
209212
}
210213
}
211214
}
215+
216+
&--sidebar .red-box {
217+
margin-left: 0;
218+
}
212219
}
213220
</style>

src/components/TheOrganizations.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default {
7171
return {
7272
organizations: [
7373
{ name: 'portal-notice', id: 'KAIST', backgroundColor: '#dbdbdb' },
74-
{ name: 'all-posts', id: 'all', icon: 'dashboard', backgroundColor: '#e15858' },
74+
{ name: 'all-posts', id: 'all', icon: 'dashboard', backgroundColor: '#ed3a3a' },
7575
{ name: 'clubs-union', id: 'UA', slug: 'clubs-union' },
7676
{ name: 'dormitory-council', id: 'GSDC', slug: 'dorm-council' },
7777
{ name: 'welfare-committee', id: 'SWF', slug: 'welfare-cmte' },

src/theme.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$theme-red: #e15858;
2-
$theme-red-dark: rgb(204, 59, 59);
1+
$theme-red: #ed3a3a;
2+
$theme-red-dark: #c62626;
33
$dark: #333333;
44
$gray: #666666;
55
$family-sans-serif: var(--font);
@@ -8,8 +8,8 @@ $body-rendering: auto;
88

99
:root {
1010
// global theme variables
11-
--theme-500: rgb(204, 59, 59);
12-
--theme-400: #e15858;
11+
--theme-500: #c62626;
12+
--theme-400: #ed3a3a;
1313
--theme-300: #f9c7c7;
1414
--theme-100: #fdf0f0;
1515

0 commit comments

Comments
 (0)