44 lines
816 B
CSS
44 lines
816 B
CSS
/**
|
|
* 2010-2022 Webkul.
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* All right is reserved,
|
|
* Please go through LICENSE.txt file inside our module
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade this module to newer
|
|
* versions in the future. If you wish to customize this module for your
|
|
* needs please refer to CustomizationPolicy.txt file inside our module for more information.
|
|
*
|
|
* @author Webkul IN
|
|
* @copyright 2010-2022 Webkul IN
|
|
* @license LICENSE.txt
|
|
*/
|
|
|
|
.rich-text {
|
|
white-space: break-spaces;
|
|
}
|
|
|
|
.image-row {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.image-wrapp {
|
|
position: relative;
|
|
width: 100%;
|
|
padding-bottom: 100%;
|
|
}
|
|
|
|
.image-wrap {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.image-wrap img {
|
|
object-fit: cover;
|
|
height: 100% !important;
|
|
width: 100% !important;
|
|
} |