Flowers are the beautiful that gives relax moment when we see and smell. There are bountiful white flowers present around us. Few of them are following;
- White Rose
- Lily
- White Tulip
- Anemone
- Carnation
Flowers are the beautiful that gives relax moment when we see and smell. There are bountiful white flowers present around us. Few of them are following;
Could not resolve dependencies for project com.adobe.learning:aem-learning-core:jar:1.0.1: Could not find artifact org.apache.commons:commons-imaging:jar:1.0-R1534292 in central (https://repo.maven.apache.org/maven2)
If you ever come with this error that means the maven central doesn't have the artifact, and we have to use the adobe profile to successfully build the code.
add parameter "-Padobe-public" with your maven build command.
e.g. mvn clean install -Padobe-public
Below is an example of SCSS code using that we are generating two classes that are being use for the same html element.
.image-text { @media(max-width:600px){ &--celebrate-page .image-text { &__htext.image-text__htext { &--v { &-center { margin-top: -20%; } } } } } }
@media (max-width: 600px) { .image-text--celebrate-page .image-text__htext.image-text__htext--v-center { margin-top: -20%; } }