You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/app/components/nodes/file-box/file-box.component.scss

54 lines
839 B

div.file-box-wrapper {
border: 2px solid #8c8c8c;
border-radius: 3px;
margin-top: 15px;
&.not-available {
height: 150px;
text-align: center;
padding-top: 40px;
color: #494949;
}
}
.content-wrapper {
min-height: 200px;
background: #222;
display: flex;
flex-direction: column;
.empty-text {
flex: 1;
text-align: center;
justify-content: center;
display: flex;
flex-direction: column;
color: #ccc;
}
}
.folders, .files {
display: flex;
flex-direction: row;
flex-wrap: wrap;
.item {
display: flex;
flex-direction: row;
background: #393939;
padding: 10px;
margin: 10px;
border-radius: 3px;
transition: all 0.2s linear;
&:hover {
cursor: pointer;
background: #424242;
}
.icon {
margin-right: 10px;
}
}
}