forked from M3-Academy/challenge-vtex-io
49 lines
781 B
CSS
49 lines
781 B
CSS
[class*="html--pdp-breadcrumb"] {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0 40px;
|
|
}
|
|
|
|
[class*="html--buy-button"] {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
[class*="html--buy-button"] :global(.vtex-button) {
|
|
height: 49px;
|
|
background: black;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
[class*="html--descriptionText"] {
|
|
width: 50%;
|
|
}
|
|
|
|
[class*="html--productDescription"] {
|
|
padding: 0 40px;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
[class*="html--buy-button"] {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
[class*="html--descriptionText"] {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 463px) {
|
|
[class*="html--buy-button"] {
|
|
flex-direction: column;
|
|
gap: 0;
|
|
}
|
|
|
|
[class*="html--buy-button"] :global(.vtex-button) {
|
|
height: 74px;
|
|
padding: 0 64px;
|
|
}
|
|
}
|