From ea4dd1dfe0d1b040b647fc28621ff446cb220e57 Mon Sep 17 00:00:00 2001 From: goodmice Date: Tue, 13 Sep 2022 16:15:02 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D1=81=D1=82=D0=B8=D0=BB=D0=B8=20"=D0=94=D0=B5?= =?UTF-8?q?=D0=BB=D0=BE=20=D1=81=D0=BA=D0=B2=D0=B0=D0=B6=D0=B8=D0=BD=D1=8B?= =?UTF-8?q?"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/well_case.less | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/styles/well_case.less diff --git a/src/styles/well_case.less b/src/styles/well_case.less new file mode 100644 index 0000000..6f4975f --- /dev/null +++ b/src/styles/well_case.less @@ -0,0 +1,31 @@ +.well-case-editor { + gap: 10px; + width: 100%; + max-height: 70vh; + display: flex; + align-items: stretch; + justify-content: space-between; + + & .category-list { + display: flex; + flex-direction: column; + align-items: stretch; + justify-content: space-between; + gap: 10px; + width: 300px; + + & .category-list-item { + cursor: pointer; + + &.empty { + background-color: #ffe58f; + border-color: #ffc53d; + } + + &.active { + background-color: #fafafa; + border: 1px solid #f0f0f0; + } + } + } +}