From c38630846fd40c85d64e8379019f71d4e536ac2c Mon Sep 17 00:00:00 2001 From: nx Date: Tue, 15 Feb 2022 19:02:37 +0000 Subject: [PATCH] add new .img-fluid class --- src/scss/core/_images.scss | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/scss/core/_images.scss diff --git a/src/scss/core/_images.scss b/src/scss/core/_images.scss new file mode 100644 index 0000000..8b10f8c --- /dev/null +++ b/src/scss/core/_images.scss @@ -0,0 +1,8 @@ +// A class, .img-fluid, shall be used to create responsive images. +// Note: having responsive by default can lead to breakage. +// .img-fluid gives designers more control over sizing. +// Also, third party widget/plugins are not overriden by default. + +.img-fluid { + @include img-fluid(); +}