re-structure to monorepo.

This commit is contained in:
a.bouhuolia
2023-02-03 01:02:31 +02:00
parent 8242ec64ba
commit 7a0a13f9d5
10400 changed files with 46966 additions and 17223 deletions

View File

@@ -0,0 +1,56 @@
.details-menu {
&--vertical {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
.detail-item{
flex-direction: column;
flex-grow: 1;
&__content{
margin: 2px 0;
}
}
}
&--horizantal {
display: flex;
flex-direction: column;
.detail-item{
flex-direction: row;
&:not(:first-of-type){
margin-top: 12px;
}
&__label{
padding-right: 10px;
}
&__content{
width: 100%;
}
}
}
.detail-item {
line-height: 1.3rem;
display: flex;
&__label {
color: #727983;
font-weight: 500;
}
&__content {
text-transform: capitalize;
}
}
+ .details-menu{
margin-top: 18px;
}
}