75 lines
1.8 KiB
SCSS
75 lines
1.8 KiB
SCSS
.sidebar {
|
|
padding: 24px;
|
|
margin-bottom: 24px;
|
|
border: #dedede solid 1px;
|
|
background-color: #F7F8FA;
|
|
.header {
|
|
margin-bottom: 20px;
|
|
font-size: 1.5rem;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 30px;
|
|
color: var(--second);
|
|
}
|
|
.text {
|
|
margin-bottom: 12px;
|
|
font-weight: 400;
|
|
font-size: 1rem;
|
|
line-height: 24px;
|
|
color: var(--second);
|
|
}
|
|
.documents {
|
|
margin-bottom: 12px;
|
|
.items {
|
|
.item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-top: 10px;
|
|
a {
|
|
color: var(--black);
|
|
}
|
|
&:before {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 8px;
|
|
flex-shrink: 0;
|
|
background: transparent url("~projects/app-a/src/assets/images/icons/document/document_20dp.svg") center no-repeat;
|
|
content: '';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.menu {
|
|
display: flex;
|
|
.block {
|
|
margin: 12px 0;
|
|
background: var(--white);
|
|
border: 1px solid #CFD1D4;
|
|
border-radius: 4px;
|
|
padding: 12px 24px;
|
|
display: flex;
|
|
column-gap: 20px;
|
|
button {
|
|
&.up, &.down, &.edit, &.delete {
|
|
width: 24px;
|
|
height: 24px;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
&.up {
|
|
background: url("~projects/app-a/src/assets/images/icons/arrow_upward_24dp.svg");
|
|
}
|
|
&.down {
|
|
background: url("~projects/app-a/src/assets/images/icons/arrow_downward_24dp.svg");
|
|
}
|
|
&.edit {
|
|
background: url("~projects/app-a/src/assets/images/icons/edit_24dp.svg");
|
|
}
|
|
&.delete {
|
|
background: url("~projects/app-a/src/assets/images/icons/trash_24dp.svg");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|