viewCategory.css 607 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ViewIncome,
  2. #ViewBills,
  3. #ViewAllowances{
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. min-height: 100%;
  8. }
  9. .categoryContainer{
  10. display: flex;
  11. flex-direction: column;
  12. width: 100%;
  13. max-width: 750px;
  14. }
  15. .viewCategoryItem{
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. padding: 5px 15px;
  20. margin: 5px 0;
  21. background: var(--surface);
  22. width: 100%;
  23. cursor: pointer;
  24. min-height: 55px;
  25. }
  26. .viewCategoryItem:hover{
  27. box-shadow: 0 0 3px var(--secondary);
  28. }
  29. .categoryItemSpent{
  30. font-weight: bold;
  31. }