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;