mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 12:10:29 +00:00
16 lines
525 B
CSS
16 lines
525 B
CSS
![]() |
.delModal {
|
||
|
background: linear-gradient(180deg,
|
||
|
rgba(217, 45, 32, 0.05) 0%,
|
||
|
rgba(217, 45, 32, 0) 24.02%),
|
||
|
#f9fafb;
|
||
|
box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08),
|
||
|
0px 8px 8px -4px rgba(16, 24, 40, 0.03);
|
||
|
@apply rounded-2xl p-8;
|
||
|
}
|
||
|
|
||
|
.warningWrapper {
|
||
|
box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08),
|
||
|
0px 8px 8px -4px rgba(16, 24, 40, 0.03);
|
||
|
background: rgba(255, 255, 255, 0.9);
|
||
|
@apply h-12 w-12 border-[0.5px] border-gray-100 rounded-xl mb-3 flex items-center justify-center;
|
||
|
}
|