Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/bootstrap/mixins/_image.scss is written in an unsupported language. File is not indexed.

0001 // Image Mixins
0002 // - Responsive image
0003 // - Retina image
0004 
0005 
0006 // Responsive image
0007 //
0008 // Keep images from scaling beyond the width of their parents.
0009 
0010 @mixin img-fluid {
0011   // Part 1: Set a maximum relative to the parent
0012   max-width: 100%;
0013   // Part 2: Override the height to auto, otherwise images will be stretched
0014   // when setting a width and height attribute on the img element.
0015   height: auto;
0016 }