From 7cefc8d964304241ed1fc7b97e085bf189233ebd Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 29 Oct 2024 08:58:17 +0100 Subject: [PATCH] feat(Calendar): add transition to border of items --- src/routes/Calendar/List/Item/Item.less | 1 + src/routes/Calendar/Table/Cell/Cell.less | 1 + 2 files changed, 2 insertions(+) diff --git a/src/routes/Calendar/List/Item/Item.less b/src/routes/Calendar/List/Item/Item.less index cdcb708b8..4ce981807 100644 --- a/src/routes/Calendar/List/Item/Item.less +++ b/src/routes/Calendar/List/Item/Item.less @@ -8,6 +8,7 @@ background-color: var(--overlay-color); border-radius: var(--border-radius); border: 0.15rem solid transparent; + transition: border-color 0.1s ease-out; .heading { flex: none; diff --git a/src/routes/Calendar/Table/Cell/Cell.less b/src/routes/Calendar/Table/Cell/Cell.less index 2262de210..6e0a5aa99 100644 --- a/src/routes/Calendar/Table/Cell/Cell.less +++ b/src/routes/Calendar/Table/Cell/Cell.less @@ -12,6 +12,7 @@ border: 0.15rem solid transparent; overflow: hidden; cursor: pointer; + transition: border-color 0.1s ease-out; &:first-child { border-radius: var(--border-radius) 0 0 0;