value-box.component.scss 545 B

123456789101112131415161718192021222324252627282930313233
  1. .container {
  2. max-width: 5rem;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. gap: 0.375rem;
  7. }
  8. input,
  9. .value {
  10. width: 3.5rem;
  11. height: 2.75rem;
  12. font-size: 1.5rem;
  13. text-align: center;
  14. border-radius: 10px;
  15. border: none;
  16. box-shadow: var(--shadow);
  17. background-color: white;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. &::-webkit-inner-spin-button,
  22. &::-webkit-outer-spin-button {
  23. -webkit-appearance: none;
  24. margin: 0;
  25. }
  26. }
  27. label {
  28. text-align: center;
  29. font-weight: 500;
  30. }