29 lines
495 B
Plaintext
29 lines
495 B
Plaintext
.file_main{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
.file_content_left{
|
|
width: 25%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.file_content_right{
|
|
width: 73%;
|
|
height: 75vh;
|
|
.file_right_content{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
margin-top: 20px;
|
|
.file_card:hover{
|
|
background-color: rgba(16, 15, 15, 0.08);
|
|
}
|
|
}
|
|
.file_right_header{
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|