100 lines
2.1 KiB
SCSS
100 lines
2.1 KiB
SCSS
:host {
|
|
.woocommerce {
|
|
min-height: calc(100vh - 39px);
|
|
padding: 20px 18px;
|
|
|
|
&.auth-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
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 {
|
|
border: solid var(--main-color) 1px;
|
|
// display: none;
|
|
}
|
|
|
|
&.first {
|
|
// border-radius: 7px 0 0 7px;
|
|
}
|
|
|
|
&.download-app {
|
|
display: none;
|
|
}
|
|
|
|
.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: var(--main-color);
|
|
left: 0;
|
|
position: absolute;
|
|
top: 103px;
|
|
}
|
|
|
|
.version {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
} |