We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3e5fe commit 2159066Copy full SHA for 2159066
src/components/BentoGrid/BentoGrid.module.css
@@ -11,19 +11,19 @@
11
12
/* Base card styling */
13
.bentoCard {
14
- border-radius: 12px;
+ border-radius: 18px; /* Increased to match or slightly exceed ui5-card */
15
overflow: hidden;
16
background: var(--sapTile_Background);
17
border: 1px solid var(--sapTile_BorderColor);
18
- box-shadow: var(--sapContent_Shadow1);
+ box-shadow: var(--sapContent_Shadow0); /* Reduced shadow intensity */
19
transition: all 0.3s ease;
20
display: flex;
21
flex-direction: column;
22
position: relative;
23
}
24
25
.bentoCard:hover {
26
- box-shadow: var(--sapContent_Shadow2);
+ box-shadow: var(--sapContent_Shadow1); /* Reduced hover shadow intensity */
27
transform: translateY(-2px);
28
29
0 commit comments