12 lines
130 B
CSS
12 lines
130 B
CSS
.Explorer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
> * {
|
|
flex: 1;
|
|
flex-basis: 0;
|
|
}
|
|
}
|