newTransaction.css 538 B

12345678910111213141516171819202122232425262728
  1. .newTransaction{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .newTransaction > h2{
  8. text-align: center;
  9. }
  10. .newTransactionRecipes{
  11. width: 100%;
  12. height: 90%;
  13. overflow-y: auto;
  14. }
  15. .newTransactionRecipe{
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. background: white;
  20. margin: 10px 0;
  21. padding: 5px 0;
  22. font-weight: bold;
  23. font-size: 17px;
  24. color: black;
  25. }