_file-input.scss 447 B

123456789101112131415161718192021222324252627
  1. .b-form-file {
  2. .custom-file-label {
  3. height: 100% !important;
  4. }
  5. // Small
  6. &.b-custom-control-sm {
  7. .custom-file-label,
  8. .custom-file-label::after {
  9. line-height: 22px;
  10. }
  11. .custom-file-label::after {
  12. height: 28px;
  13. }
  14. }
  15. // Large
  16. &.b-custom-control-lg {
  17. .custom-file-label,
  18. .custom-file-label::after {
  19. line-height: 23px;
  20. }
  21. .custom-file-label::after {
  22. height: 44px;
  23. }
  24. }
  25. }