Skip to content

Commit

Permalink
Merge pull request #737 from woowacourse-teams/dev
Browse files Browse the repository at this point in the history
release: v.1.4.4
  • Loading branch information
xrabcde authored Oct 28, 2021
2 parents 9b50118 + c15252d commit 37dfa59
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zzimkkong-frontend",
"version": "1.4.3",
"version": "1.4.4",
"main": "src/index.tsx",
"license": "MIT",
"homepage": "https://github.com/woowacourse-teams/2021-zzimkkong",
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/components/TimePicker/TimePicker.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const labelTextCSS = (labelText: string) => css`

export const Container = styled.div`
position: relative;
z-index: ${Z_INDEX.TIME_PICKER};
z-index: ${Z_INDEX.TIME_PICKER_CONTAINER};
`;

export const TimeContainer = styled.div<TimeContainerProps>`
Expand Down Expand Up @@ -70,6 +70,7 @@ export const OptionsContainer = styled.div`
width: 100%;
position: absolute;
user-select: none;
z-index: ${Z_INDEX.TIME_PICKER_OPTIONS_CONTAINER};
`;

export const Dimmer = styled.div`
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/constants/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ export const Z_INDEX = {
DRAWER_CONTENT: 151,
DRAWER_DIMMER: 150,
HEADER: 120,
RESERVATION_BUTTON: 102,
TIME_PICKER: 101,
RESERVATION_BUTTON: 103,
TIME_PICKER_OPTIONS_CONTAINER: 102,
TIME_PICKER_CONTAINER: 101,
TIME_PICKER_DIMMER: 100,
SELECT_LIST_BOX_BUTTON: 50,
SELECT_LIST_BOX: 49,
Expand Down

0 comments on commit 37dfa59

Please sign in to comment.