ability-table.component.scss 501 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .ability-box {
  2. height: 100%;
  3. }
  4. .item-list {
  5. // height: calc(100% - 5rem);
  6. height: 40rem; //TODO: Only mocked to fit
  7. }
  8. .item {
  9. margin: 15px 10px;
  10. padding: 10px 10px;
  11. .header {
  12. display: flex;
  13. justify-content: space-between;
  14. margin-bottom: 0.5rem;
  15. .name {
  16. font-size: 1.25rem;
  17. font-weight: 600;
  18. }
  19. .cost {
  20. font-weight: 600;
  21. }
  22. }
  23. .charges-box {
  24. display: flex;
  25. align-items: center;
  26. gap: 0.25rem;
  27. }
  28. }
  29. .used {
  30. opacity: 0.5;
  31. }