diff --git a/frontend/src/styles/workspace/workspace-items.css b/frontend/src/styles/workspace/workspace-items.css index 962d1d8..0a764eb 100644 --- a/frontend/src/styles/workspace/workspace-items.css +++ b/frontend/src/styles/workspace/workspace-items.css @@ -6,12 +6,17 @@ cursor: grab; touch-action: none; transform-origin: center center; - transition: box-shadow 0.16s ease; + transition: + opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), + filter 0.55s cubic-bezier(0.4, 0, 0.2, 1), + box-shadow 0.16s ease; outline: none; will-change: transform; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; + filter: blur(0px) grayscale(0%); + opacity: 1; } .desk-item__body { @@ -41,10 +46,9 @@ } .desk-item.is-filtered-out { - opacity: 0.12; + opacity: 0; pointer-events: none; - filter: blur(15px) grayscale(100%); - transition: opacity 0.6s ease, filter 0.28s ease; + filter: blur(18px) grayscale(100%); z-index: 0; }