TextInput.scss 390 B

1234567891011121314151617181920
  1. @import "../css/_variables.scss";
  2. .TextInput {
  3. display: inline-block;
  4. border: 1.5px solid $oc-gray-2;
  5. line-height: 1;
  6. padding: 0.75rem;
  7. white-space: nowrap;
  8. border-radius: var(--space-factor);
  9. background-color: $oc-white;
  10. &:not(:focus) {
  11. &:hover {
  12. background-color: $oc-gray-1;
  13. }
  14. }
  15. &:focus {
  16. outline: none;
  17. box-shadow: 0 0 0 2px $oc-blue-5;
  18. }
  19. }