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

50 lines
992 B
SCSS
Raw Normal View History

.listContainer{
margin-bottom: 32px;
display: flex;
flex-direction: row;
2023-02-07 14:40:28 +00:00
padding-right: 40px;
padding-left: 40px;
justify-content: space-around;
2023-02-07 18:37:46 +00:00
@media (max-width: 1024px){
flex-direction: column;
border-top: #BFBFBF 1px solid;
border-spacing: 40px;
}
&::after{
content: "";
background-color: #BFBFBF;
display: inline-block;
width: 100%;
height: 1px;
position: relative;
bottom: 9px;
}
}
.listItem :global(.vtex-button){
background-color: white;
color: #BFBFBF;
border: 0;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 38px;
text-transform: capitalize;
border-radius: 0;
}
.listItemActive :global(.vtex-button){
background-color: white;
color: black;
border: 0;
border-bottom: 2px black solid;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 38px;
2023-02-07 18:37:46 +00:00
@media (max-width: 1024px){
border: 0;
}
}