Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/395: [QA] 입력장치 열었을 때 프로젝트 세팅 박스 레이아웃이 깨지는 현상 해결 #396

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/blocks/BpmBar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
font-weight: bold;
color: black;
cursor: pointer;
z-index: 999;
z-index: 10;
}

& > .slider-bottom {
Expand Down
3 changes: 3 additions & 0 deletions client/src/components/blocks/RecordDevice/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@import "utils/style/size";

#record-device {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
Expand Down Expand Up @@ -34,6 +35,8 @@
}

.device-list {
position: absolute;
top: 110px;
width: calc(100% - 32px);
height: 128px;
margin-top: 8px;
Expand Down