GameCreationForm.module.css 660 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .form {
  2. display: flex;
  3. flex-flow: column nowrap;
  4. justify-content: space-between;
  5. align-self: center;
  6. }
  7. .dropdowns {
  8. width: 100%;
  9. flex: 3;
  10. max-width: 350px;
  11. margin-top: 5px;
  12. display: flex;
  13. flex-flow: row wrap;
  14. justify-content: space-around;
  15. align-items: flex-end;
  16. }
  17. .buttoncontainer {
  18. display: flex;
  19. flex-flow: row nowrap;
  20. justify-content: space-between;
  21. align-items: center;
  22. padding: 0px 8px 8px 8px;
  23. border-bottom: 4px solid #333;
  24. margin-bottom: 12px;
  25. }
  26. .favbutton {
  27. border-radius: 0%;
  28. height: 24px;
  29. width: 24px;
  30. /* padding: 8px 8px 8px 8px; */
  31. }
  32. .start {
  33. height: 100%;
  34. flex: 3 1;
  35. margin-bottom: 6px;
  36. }