[feature] Allow users to export data via the settings panel (#3140)

* [feature] Allow users to export data via the settings panel

* rename/move some stuff
This commit is contained in:
tobi 2024-07-31 16:03:34 +02:00 committed by GitHub
commit 38f041cea1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 2102 additions and 7 deletions

View file

@ -1464,6 +1464,39 @@ button.tab-button {
}
}
.export-data {
.export-buttons-wrapper {
display: grid;
max-width: fit-content;
gap: 0.5rem;
.stats-and-button {
display: grid;
grid-template-columns: 13rem 1fr;
align-items: center;
gap: 0.25rem;
.mutation-button {
width: 100%;
overflow-x: hidden;
button {
font-size: 1rem;
width: 100%;
}
}
}
@media screen and (max-width: 35rem) {
gap: 1rem;
.stats-and-button {
grid-template-columns: auto;
}
}
}
}
@media screen and (orientation: portrait) {
.reports .report .byline {
grid-template-columns: 1fr;