41 lines
590 B
CSS
Raw Normal View History

2024-08-29 18:45:52 +02:00
.files {
2024-11-11 09:52:31 +07:00
position: relative;
2024-11-06 21:19:33 +01:00
section {
2024-11-05 09:57:13 +01:00
display: inline-flex;
justify-content: space-between;
align-items: center;
width: 100%;
gap: 16px;
.tabs {
flex-basis: 75%;
}
}
.filters {
margin-top: 16px;
gap: 16px;
display: flex;
}
.button {
width: 105px;
}
table thead tr th {
2024-11-26 18:41:40 +01:00
background-color: rgba(20, 20, 20, 0.6);
2024-11-05 09:57:13 +01:00
}
2024-11-22 15:07:40 +01:00
@media (max-width: 800px) {
table th:nth-child(2),
table td:nth-child(2),
table th:nth-child(3),
table td:nth-child(3),
section,
.filters {
display: none;
}
}
2024-08-29 18:45:52 +02:00
}