blob: 63a2a92600eb5c44fa78b264551f11203c7af038 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.folder {
display: flex;
flex-direction: column;
border-width: 2px;
border-style: solid;
border-color: black;
padding: 2px;
margin: 2px;
}
.folder > div {
display: flex;
flex-direction: column;
}
|