30 lines
383 B
CSS
30 lines
383 B
CSS
.bfl-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.bfl-selection-section {
|
|
|
|
}
|
|
|
|
.bfl-selected-files {
|
|
margin-top: 10px;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
|
|
.bfl-checkbox-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.bfl-checkbox-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|