feat: Apply some elevation to landing components

This commit is contained in:
Alexander Navarro 2024-03-12 17:06:17 -03:00
parent 3bd2b6a4b6
commit 59ceb8ec44
5 changed files with 86 additions and 42 deletions

View file

@ -20,10 +20,11 @@ export interface Props {
<style>
.card {
background-color: var(--prj-surface-1);
background-color: var(--prj-surface-2);
color: var(--prj-surface-text);
border: 1px solid var(--prj-accent-bg);
border-radius: 8px;
border: 1px solid var(--prj-surface-2);
border-radius: var(--prj-border-radious);
box-shadow: 5px 5px 5px 5px var(--prj-shadow);
padding: var(--prj-spacing-2) var(--prj-spacing-3);
}