mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-31 04:32:06 +08:00
(fix) Correct the shadow depth on the Item card [SCI-9949] (#6905)
This commit is contained in:
parent
4ad84a43b7
commit
fa29c99e4a
2 changed files with 5 additions and 1 deletions
|
@ -5,3 +5,7 @@ $modal-shadow: 0px 4px 16px rgba(35, 31, 32, 0.15);
|
|||
.sn-shadow-menu-sm {
|
||||
box-shadow: 0px 16px 32px 0px rgba(16, 24, 40, 0.07);
|
||||
}
|
||||
|
||||
.sn-shadow-menu-lg {
|
||||
box-shadow: 0px 32px 64px -12px rgba(16, 24, 40, 0.14);
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
leave-to-class="translate-x-full w-0"
|
||||
v-click-outside="handleOutsideClick">
|
||||
<div ref="wrapper" v-show="isShowing" id="repository-item-sidebar-wrapper"
|
||||
class='items-sidebar-wrapper bg-white gap-2.5 self-stretch rounded-tl-4 rounded-bl-4 shadow-lg h-full w-[565px]'>
|
||||
class='items-sidebar-wrapper bg-white gap-2.5 self-stretch rounded-tl-4 rounded-bl-4 sn-shadow-menu-lg h-full w-[565px]'>
|
||||
|
||||
<div id="repository-item-sidebar" class="w-full h-full pl-6 bg-white flex flex-col">
|
||||
|
||||
|
|
Loading…
Reference in a new issue