123456789101112131415161718192021222324252627282930313233343536 |
- /********************************
- # featured section
- ********************************/
-
- .featured-init {
- .product-thumbnail {
- img {
- max-width: 120px;
- }
- }
-
- .product-desc {
- padding: 0 15px;
- }
- }
-
- .featured-init2 {
- .product-thumbnail {
- img {
- max-width: 120px;
- @include max-screen(480, 767) {
- max-width: 100px;
- }
- }
- }
- }
-
- .featured-init {
- .product-thumbnail {
- width: auto;
- }
- }
-
- /********************************
- # featured section End
- ********************************/
|