35 lines
618 B
CSS
35 lines
618 B
CSS
.FinderContent {
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
display: flex;
|
|
}
|
|
|
|
.FinderContent .ToolBar {
|
|
background-color: #eee;
|
|
border-bottom: 1px solid #555;
|
|
width: 100%;
|
|
height: 20px;
|
|
}
|
|
|
|
.Focused .FinderContent .ToolBar {
|
|
background-color: #ddd;
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
.FinderContent .FinderFileView {
|
|
background-color: #fff;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
display: flex;
|
|
}
|
|
|
|
/*# sourceMappingURL=finder.css.map */
|