development #34

Merged
Rafael_Sampaio_de_Oliveira merged 65 commits from development into master 2023-02-03 19:53:10 +00:00
5 changed files with 64 additions and 0 deletions
Showing only changes of commit 591cc072b7 - Show all commits

View File

@ -24,3 +24,7 @@
[class*="html--productDescription"] {
padding: 0 40px;
}
[class*="html--descriptionText"] {
width: 100%;
}

View File

@ -13,4 +13,10 @@
font-weight: 400;
font-size: 24px;
line-height: 38px;
}
@media (max-width: 1024px) {
.headingLevel1--shelfTitleText {
margin-top: 32px;
}
}

View File

@ -54,4 +54,26 @@
border-bottom: 2px solid #000000;
border-radius: 0;
text-transform: capitalize;
}
@media (max-width: 1024px) {
.listContainer {
flex-direction: column;
border-top: 1px solid #bfbfbf;
}
.listItem :global(.vtex-button) {
display: flex;
width: 100%;
}
.listItem :global(.vtex-button__label) {
padding: 0;
}
.listItemActive :global(.vtex-button) {
border: none;
}
.contentItem {
flex-direction: column;
margin-top: 15px;
gap: 16px;
}
}

View File

@ -4,3 +4,9 @@
font-size: 24px;
line-height: 38px;
}
@media (max-width: 1024px) {
.headingLevel1--shelfTitleText {
margin-top: 32px;
}
}

View File

@ -45,3 +45,29 @@
border-radius: 0;
text-transform: capitalize;
}
@media (max-width: 1024px) {
.listContainer {
flex-direction: column;
border-top: 1px solid $color-gray10;
}
.listItem :global(.vtex-button) {
display: flex;
width: 100%;
}
.listItem :global(.vtex-button__label) {
padding: 0;
}
.listItemActive :global(.vtex-button) {
border: none;
}
.contentItem {
flex-direction: column;
margin-top: 15px;
gap: 16px;
}
}