-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/email-history
- Loading branch information
Showing
64 changed files
with
976 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
:root { | ||
--gray-001: #fafafa; | ||
--gray-002: #eee; | ||
--gray-003: #ddd; | ||
--gray-004: #ccc; | ||
--gray-005: #bbb; | ||
--gray-006: #aaa; | ||
--gray-007: #999; | ||
--gray-008: #666; | ||
--gray-009: #555; | ||
--black: #333; | ||
--white: #fff; | ||
--light-blue-gray: #f1f2f6; | ||
--blue: #279cf6; | ||
--red: #ff0000; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
frontend/src/components/@common/Description/Description.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.description { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 15px 0; | ||
font-weight: 300; | ||
font-size: 16px; | ||
margin: 8px 0; | ||
font-size: 14px; | ||
color: var(--gray-008); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
.label { | ||
display: flex; | ||
align-items: center; | ||
font-weight: 500; | ||
color: #2c3e50; | ||
margin: 5px 0; | ||
} | ||
|
||
.required::after { | ||
content: "*"; | ||
margin: 0 3px; | ||
color: #1e90ff; | ||
margin-left: 0.25rem; | ||
color: var(--blue); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 31 additions & 8 deletions
39
frontend/src/components/@common/MessageTextInput/MessageTextInput.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,42 @@ | ||
.box { | ||
position: relative; | ||
} | ||
|
||
.text-field { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0.625rem; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.label { | ||
margin-bottom: 0.375rem; | ||
} | ||
|
||
.length-limit { | ||
align-self: flex-end; | ||
color: #999999; | ||
font-size: 13px; | ||
color: var(--gray-007); | ||
font-size: 0.875rem; | ||
} | ||
|
||
.rule-field { | ||
margin-left: 8px; | ||
margin-bottom: 10px; | ||
height: 12px; | ||
font-size: 12px; | ||
color: #ff0000; | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
margin-left: 0.5rem; | ||
height: 0.75rem; | ||
font-size: 0.75rem; | ||
color: var(--red); | ||
} | ||
|
||
.description { | ||
margin-bottom: 1.125rem; | ||
} | ||
|
||
.input-box { | ||
display: flex; | ||
height: 2.5rem; | ||
} | ||
|
||
.input-box > input { | ||
flex: 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
frontend/src/components/@common/MessageTextarea/MessageTextarea.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 6 additions & 7 deletions
13
frontend/src/components/@common/TextInput/TextInput.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
.text-input { | ||
padding: 12px; | ||
border: 1px solid #ced6e0; | ||
border-radius: 3px; | ||
padding: 0.625rem 0.875rem; | ||
border: 1px solid var(--gray-005); | ||
border-radius: 0.25rem; | ||
transition-duration: 0.5s; | ||
line-height: 30px; | ||
font-size: 16px; | ||
font-size: 1rem; | ||
} | ||
|
||
.text-input:focus { | ||
border: 1px solid #1e90ff; | ||
border: 1px solid var(--blue); | ||
} | ||
|
||
.text-input:read-only { | ||
cursor: default; | ||
background: #ccc; | ||
background: var(--gray-004); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.