diff --git a/design/uiux/prototype/11-회의록수정.html b/design/uiux/prototype/11-회의록수정.html index e9ca6d9..b993c09 100644 --- a/design/uiux/prototype/11-회의록수정.html +++ b/design/uiux/prototype/11-회의록수정.html @@ -233,6 +233,39 @@ font-size: var(--font-small); color: var(--gray-700); } + + /* 잠금 해제 요청 버튼 */ + .unlock-request-btn { + display: flex; + align-items: center; + gap: 4px; + padding: 6px 12px; + background: transparent; + border: 1px solid var(--primary); + border-radius: var(--radius-md); + color: var(--primary); + font-size: var(--font-caption); + font-weight: var(--font-weight-medium); + cursor: pointer; + transition: all var(--transition-fast); + white-space: nowrap; + flex-shrink: 0; + } + + .unlock-request-btn img { + width: 16px; + height: 16px; + flex-shrink: 0; + } + + .unlock-request-btn:hover { + background: var(--primary-light); + border-color: var(--primary); + } + + .unlock-request-btn:active { + transform: scale(0.98); + } @@ -353,11 +386,14 @@
-
@@ -418,11 +454,14 @@
-
@@ -478,11 +517,14 @@
-
@@ -540,8 +582,8 @@ diff --git a/design/uiux/prototype/img/open-padlock.png b/design/uiux/prototype/img/open-padlock.png new file mode 100644 index 0000000..f36d9b9 Binary files /dev/null and b/design/uiux/prototype/img/open-padlock.png differ diff --git a/design/uiux/prototype/img/padlock.png b/design/uiux/prototype/img/padlock.png new file mode 100644 index 0000000..6b0db8e Binary files /dev/null and b/design/uiux/prototype/img/padlock.png differ