From 5391e6de71e0a3f10864d457db2a28787c60eda2 Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Thu, 28 May 2026 18:25:20 +0900 Subject: [PATCH] =?UTF-8?q?=ED=99=94=EC=82=B4=ED=91=9C=20css=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/_contents.scss | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/styles/_contents.scss b/src/styles/_contents.scss index a3f97928..8375573f 100644 --- a/src/styles/_contents.scss +++ b/src/styles/_contents.scss @@ -113,6 +113,48 @@ align-items: center; margin-left: auto; + .undo-redo-wrap { + display: flex; + align-items: center; + gap: 4px; + margin-right: 8px; + + button { + display: flex; + align-items: center; + justify-content: center; + width: 30px; + height: 30px; + padding: 0; + border: none; + border-radius: 2px; + background-color: #3d3d3d; + color: #fff; + cursor: pointer; + transition: all 0.17s ease-in-out; + + svg { + width: 16px; + height: 16px; + stroke: currentColor; + stroke-width: 2; + stroke-linecap: round; + stroke-linejoin: round; + fill: none; + } + + &:hover:not(.disabled):not(:disabled) { + background-color: #1083e3; + } + + &.disabled, + &:disabled { + opacity: 0.35; + cursor: not-allowed; + } + } + } + .select-box { width: 124px; margin: 0 5px;