drop.chapril.org-firefoxsend/app/templates/fileList/fileList.css

29 lines
557 B
CSS
Raw Normal View History

.fileList {
2018-07-31 20:09:18 +02:00
margin: 0;
2018-08-09 02:24:58 +02:00
padding: 0;
2018-07-31 20:09:18 +02:00
width: 262px;
2018-08-09 02:24:58 +02:00
min-height: 100%;
height: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
list-style-type: none;
overflow: scroll;
font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
}
/* hack because justify-content:flex-end and overflow:scroll doesn't work together */
.fileList > :first-child {
margin-top: auto;
2018-07-31 20:09:18 +02:00
}
@media (max-device-width: 750px), (max-width: 750px) {
.fileList {
2018-08-09 02:24:58 +02:00
flex: none;
2018-07-31 20:09:18 +02:00
position: static;
2018-08-09 02:24:58 +02:00
width: 406px;
2018-08-03 21:24:41 +02:00
max-height: 160px;
2018-08-09 02:24:58 +02:00
margin: 0;
}
}