save-throw-field.component.scss 487 B

12345678910111213141516171819202122232425
  1. .save-throw-field{
  2. border: solid 1px black;
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. justify-content: space-between;
  7. text-align: center;
  8. .save-throw-field__input{
  9. width: 15%;
  10. }
  11. .save-throw-field__name{
  12. width: 50%;
  13. font-size: 1.125rem;
  14. font-weight: 600;
  15. text-align: start;
  16. }
  17. .save-throw-field__value{
  18. width: 20%;
  19. font-size: 1.5rem;
  20. font-weight: 600;
  21. }
  22. }