feat(web): add styles for add account and institution buttons with disabled state

This commit is contained in:
Stevan Freeborn
2026-03-11 18:52:33 -05:00
parent a721c60ad9
commit 9e1d04da80
3 changed files with 33 additions and 0 deletions
@@ -73,4 +73,15 @@
gap: 0.25rem; gap: 0.25rem;
align-items: center; align-items: center;
} }
.add-account-button {
background: var(--bg-element);
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
}
.add-account-button:disabled {
cursor: not-allowed;
opacity: 0.6;
}
</style> </style>
@@ -164,6 +164,17 @@
gap: 0.5rem; gap: 0.5rem;
} }
.add-account-button {
background: var(--bg-element);
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
}
.add-account-button:disabled {
cursor: not-allowed;
opacity: 0.6;
}
.accounts-list { .accounts-list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -120,4 +120,15 @@
gap: 1rem; gap: 1rem;
padding: 1rem; padding: 1rem;
} }
.add-institution-button {
background: var(--bg-element);
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
}
.add-institution-button:disabled {
cursor: not-allowed;
opacity: 0.6;
}
</style> </style>