tiles shadow added

This commit is contained in:
suryacp23 2026-07-21 19:10:51 +05:30
parent 2235f2ee68
commit bdea45b6da

View File

@ -26,13 +26,18 @@
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
padding: 16px 20px; padding: 16px 20px;
background: var(--z-bg-neutral-200); background-color: var(--z-bg-neutral-100);
border-radius: var(--z-border-radius-lg, 12px); border-radius: var(--z-border-radius-lg, 12px);
box-shadow: var(--block-shadow, 0 7px 7px rgba(0, 0, 0, 0.1)); box-shadow: var(--block-shadow);
border: 1px solid var(--z-neutral-500); transition: all 0.2s ease-in-out;
border: 1px solid var(--z-border-neutral-300);
font-family: var(--font-sans, system-ui, -apple-system, sans-serif); font-family: var(--font-sans, system-ui, -apple-system, sans-serif);
} }
.z-stats-tile:hover {
box-shadow: var(--z-shadow-md);
}
.z-stats-tile:last-child { .z-stats-tile:last-child {
margin-bottom: 0; margin-bottom: 0;
} }