mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-03 20:33:16 -06:00
[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:
parent
43519324b3
commit
38f041cea1
32 changed files with 2102 additions and 7 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue