spellcard.component.scss 364 B

1234567891011121314151617
  1. .spellcard {
  2. height: 20rem;
  3. width: 15rem;
  4. border: solid 1px var(--border-color);
  5. border-radius: 10px;
  6. background: white;
  7. box-shadow: var(--shadow);
  8. cursor: pointer;
  9. transition: all 0.3s ease-in-out;
  10. .name {
  11. font-weight: 600;
  12. font-size: 1.125rem;
  13. text-align: center;
  14. margin-top: 0.25rem;
  15. }
  16. }