resize.module.css 270 B

123456789101112131415161718192021
  1. /**
  2. * @file
  3. * Resizable textareas.
  4. */
  5. .resize-none {
  6. resize: none;
  7. }
  8. .resize-vertical {
  9. resize: vertical;
  10. min-height: 2em;
  11. }
  12. .resize-horizontal {
  13. resize: horizontal;
  14. max-width: 100%;
  15. }
  16. .resize-both {
  17. resize: both;
  18. max-width: 100%;
  19. min-height: 2em;
  20. }