Skip to content

Commit

Permalink
Bugfix/style and typo (#265)
Browse files Browse the repository at this point in the history
* #262 斷行

* #263 typo

* #262 段行 for firefox 但是他無法自動長高

* #264 safari do not support inline-flex
  • Loading branch information
wutingy authored and mark86092 committed Aug 2, 2017
1 parent b7e52c1 commit 73e380a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/components/ExperienceDetail/SectionBlock.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

.content {
margin-bottom: 1.5em;
white-space: pre-line;
}
6 changes: 3 additions & 3 deletions src/components/ExperienceSearch/ExperienceSearch.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
}

.frontButton, .rearButton {
display: inline-flex;
display: inline-block;
width: 50%;
height: 32px;
justify-content: center;
align-items: center;
line-height: 32px;
text-align: center;
border: 1px solid main-yellow;

&.toggle {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ShareExperience/common/optionMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,6 @@ export const jobEndingTimeYearOptions = Array(11).fill(0).map((_, index) => ({
}));

export const jobEndingTimeMonthOptions = Array(12).fill(0).map((_, index) => ({
label: index,
value: index,
label: index + 1,
value: index + 1,
}));
1 change: 1 addition & 0 deletions src/components/common/reset.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@ input[type="submit"] {
}
textarea {
max-width: 100%;
white-space: pre-wrap;
}
/*form reset end*/

0 comments on commit 73e380a

Please sign in to comment.