Skip to content

Commit

Permalink
✏️ Changed styling v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick committed Jan 27, 2018
1 parent cf8f2a0 commit 2fe1dd4
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 18 deletions.
6 changes: 3 additions & 3 deletions src/components/addButton/style.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.button {
align-items: center;
background: #fafafa;
border: 1px solid var(--main-color);
color: var(--main-color);
background: var(--main-color);
border: 0;
color: var(--main-bg-color);
display: flex;
flex-direction: column;
justify-content: center;
Expand Down
4 changes: 3 additions & 1 deletion src/components/datePicker/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
width: 100%;

label {
color: var(--main-blue);
font-size: 16px;
font-weight: 700;
}
}

.date {
border: 1px solid var(--main-color);
background: var(--input-color);
border: 0;
border-radius: 0;
display: flex;
font-size: 15px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/formItem/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}

.select {
background: var(--main-bg-color);
background: var(--input-color);
border: 1px solid var(--main-color);
border-radius: 0;
font-size: 15px;
Expand Down
5 changes: 3 additions & 2 deletions src/components/inputGroup/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
width: 49.5%;

label {
color: var(--main-blue);
font-size: 16px;
font-weight: 700;
margin-top: 10px;
}
}

.inputField {
background: var(--main-bg-color);
border: 1px solid var(--main-color);
background: var(--input-color);
border: 0;
border-radius: 0;
font-size: 15px;
margin-top: 5px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/locationPopup/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
padding: 0;

label {
color: var(--main-color);
color: var(--main-blue);
font-size: 16px;
font-weight: 700;
margin: 0 0 5px;
Expand Down
20 changes: 10 additions & 10 deletions src/routes/add/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

.addButton {
align-items: center;
background: none;
border: 1px solid var(--main-color);
background: var(--main-purple);
border: 0;
border-radius: 50%;
color: var(--main-color);
color: var(--main-bg-color);
display: flex;
font-size: 50px;
font-weight: 400;
Expand Down Expand Up @@ -37,15 +37,15 @@
padding: 14px 16px;

label {
color: var(--main-color);
color: var(--main-blue);
font-size: 16px;
font-weight: 700;
margin: 5px 0 4px;
}

select {
background: var(--main-bg-color);
border: 1px solid var(--main-color);
background: var(--input-color);
border: 0;
border-radius: 0;
display: inline-block;
font-size: 15px;
Expand Down Expand Up @@ -109,7 +109,7 @@
// }

.addedInputField {
border: 1px solid var(--main-color);
border: 0;
border-radius: 0;
font-size: 15px;
margin-top: 0;
Expand Down Expand Up @@ -165,8 +165,8 @@

button {
align-items: center;
background: none;
border: 1px solid var(--main-color);
background: var(--input-color);
border: 0;
border-radius: 0;
color: var(--main-color);
display: flex;
Expand All @@ -182,7 +182,7 @@
}

label {
color: var(--main-color);
color: var(--main-blue);
font-size: 16px;
font-weight: 700;
padding: 0;
Expand Down
1 change: 1 addition & 0 deletions src/style/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--main-color: #666666;
--medium-gray: #999999;
--main-light-color: #e2e2e2;
--input-color: #ffffff;
}

html,
Expand Down

0 comments on commit 2fe1dd4

Please sign in to comment.