15 lines
No EOL
387 B
SCSS
15 lines
No EOL
387 B
SCSS
// Responsive image
|
|
//
|
|
// Keep images from scaling beyond the width of their parents.
|
|
|
|
.img-fluid {
|
|
// Part 1: Set a maximum relative to the parent
|
|
max-width: 100%;
|
|
// Part 2: Override the height to auto, otherwise images will be stretched
|
|
// when setting a width and height attribute on the img element.
|
|
height: auto;
|
|
}
|
|
|
|
.img-shadow {
|
|
box-shadow: 0 8px 24px -17px #000101;
|
|
} |