76 lines
1.8 KiB
SCSS
76 lines
1.8 KiB
SCSS
:host {
|
|
.woocommerce {
|
|
min-height: calc(100vh - 39px);
|
|
padding: 20px 18px;
|
|
nav {
|
|
margin-bottom: 24px;
|
|
margin-top: 26px;
|
|
display: flex;
|
|
justify-content: center;
|
|
ul {
|
|
max-width: 400px;
|
|
width: 100%;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
li {
|
|
padding: 12px;
|
|
width: 100%;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
height: 81px;
|
|
margin-bottom: 10px;
|
|
background: #ffffff;
|
|
box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
|
|
color: #000;
|
|
border-radius: 15px;
|
|
&.is-active {
|
|
// background-color: #009688;
|
|
display: none;
|
|
}
|
|
&.first {
|
|
// border-radius: 7px 0 0 7px;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
.menu-item-info {
|
|
margin-left: 16px;
|
|
& > a {
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
text-decoration: none;
|
|
color: #000;
|
|
display: block;
|
|
text-align-last: left;
|
|
}
|
|
& > p {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
li:nth-child(odd) {
|
|
background-color: #EBEBEB;
|
|
}
|
|
}
|
|
}
|
|
.top-left-attribute {
|
|
width: 10px;
|
|
height: 5px;
|
|
background: #09467f;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 69px;
|
|
}
|
|
}
|
|
}
|