challenge-vtex-io-emersonfully/styles/sass/pages/product/vtex.tab-layout.scss

31 lines
575 B
SCSS
Raw Normal View History

2023-02-09 00:15:54 +00:00
.listContainer {
display: flex;
justify-content: space-evenly;
border-bottom: 1px solid #b9b9b9;
margin: auto;
width: 95%;
2023-02-10 21:46:45 +00:00
@media screen and (min-width: 1920px) {
width: 75%;
}
2023-02-09 00:15:54 +00:00
@media screen and (max-width: 1024px) {
flex-direction: column;
2023-02-09 01:51:03 +00:00
border-top: 1px solid #b9b9b9;
2023-02-09 00:15:54 +00:00
}
}
.contentItem {
display: flex;
2023-02-11 01:17:34 +00:00
padding: 62px 52px 0;
2023-02-09 00:15:54 +00:00
2023-02-10 21:46:45 +00:00
@media screen and (min-width: 1920px) {
padding: 62px 360px;
}
2023-02-09 00:15:54 +00:00
@media screen and (max-width: 1024px) {
flex-direction: column;
2023-02-09 01:51:03 +00:00
padding: 16px 40px;
border-bottom: 1px solid #b9b9b9;
2023-02-09 00:15:54 +00:00
}
}