fix: label

This commit is contained in:
ThatOneCalculator 2022-12-11 18:00:39 -08:00
parent c03b4f8cfb
commit 7ce7df6947
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 29 additions and 22 deletions

View file

@ -3,27 +3,27 @@
## Planned
- Stucture
- [Sonic](https://crates.io/crates/sonic-server) support as an ElasticSearch alternative
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
- Optionally use [ScyllaDB](https://www.scylladb.com/open-source-nosql-database/) for storing notes
- Rewrite backend in Rust and [Axum](https://github.com/tokio-rs/axum)
- [Sonic](https://crates.io/crates/sonic-server) support as an ElasticSearch alternative
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
- Optionally use [ScyllaDB](https://www.scylladb.com/open-source-nosql-database/) for storing notes
- Rewrite backend in Rust and [Axum](https://github.com/tokio-rs/axum)
- Function
- Federate with note edits
- User "choices" (recommended users) like Mastodon and Soapbox
- Join Reason system like Mastodon/Pleroma
- Option to publicize instance blocks
- Backfill remote users
- Build flag to remove NSFW/AI stuff
- Timeline filters
- Filter notifications by user
- Non-nyaify cat mode
- Exclude self from antenna
- Federate with note edits
- User "choices" (recommended users) like Mastodon and Soapbox
- Join Reason system like Mastodon/Pleroma
- Option to publicize instance blocks
- Backfill remote users
- Build flag to remove NSFW/AI stuff
- Timeline filters
- Filter notifications by user
- Non-nyaify cat mode
- Exclude self from antenna
- Form
- MFM button
- Personal notes for all accounts
- Fully revamp non-logged-in screen
- Classic mode make instance icon bring up new context menu
- [Rat mode?](https://stop.voring.me/notes/933fx97bmd)
- MFM button
- Personal notes for all accounts
- Fully revamp non-logged-in screen
- Classic mode make instance icon bring up new context menu
- [Rat mode?](https://stop.voring.me/notes/933fx97bmd)
## Work in progress

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "13.0.0-rc3",
"version": "13.0.0-rc4",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -9,7 +9,7 @@
<FormButton primary danger @click="move(moveToAccount)">
{{ i18n.ts.moveAccount }}
</FormButton>
<div class="label">{{ i18n.ts.moveAccountDescription }}</div>
<div class="description">{{ i18n.ts.moveAccountDescription }}</div>
</FormSection>
<FormSection>
@ -21,7 +21,7 @@
<FormButton class="button" inline primary @click="save(accountAlias)">
<i class="ph-floppy-disk-back-bold ph-lg"></i> {{ i18n.ts.save }}
</FormButton>
<div class="label">{{ i18n.ts.moveFromDescription }}</div>
<div class="description">{{ i18n.ts.moveFromDescription }}</div>
</FormSection>
</div>
</template>
@ -59,3 +59,10 @@ definePageMetadata({
icon: 'ph-lock-bold ph-lg',
});
</script>
<style lang="scss">
.description {
font-size: .85em;
padding: 1rem;
}
</style>