dev #930

Merged
ysCha merged 95 commits from dev into dev-deploy 2026-06-23 18:00:25 +09:00
Showing only changes of commit 5391e6de71 - Show all commits

View File

@ -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;