This commit is contained in:
ThatOneCalculator 2022-07-23 22:01:41 -07:00
parent 1a9a3b1bc4
commit 394b9d404a
2 changed files with 14 additions and 2 deletions

View file

@ -19,7 +19,6 @@
## In progress ## In progress
- Better timeline top bar - Better timeline top bar
- Profile background
## Implemented ## Implemented
@ -30,6 +29,7 @@
- Better sidebar/navbar - Better sidebar/navbar
- Mark as read from notifications widget - Mark as read from notifications widget
- Less cluttered notification summary - Less cluttered notification summary
- Profile background as banner
- Better welcome screen (not logged in) - Better welcome screen (not logged in)
- Ability to turn off "Connection lost" message - Ability to turn off "Connection lost" message
- Spinner instead of "Loading..." - Spinner instead of "Loading..."

View file

@ -47,6 +47,18 @@ defineProps<{
background-color: rgba(0, 0, 0, 0.1); background-color: rgba(0, 0, 0, 0.1);
background-size: cover; background-size: cover;
background-position: center; background-position: center;
&::after {
content: "";
background-image: inherit;
position: fixed;
inset: 0;
background-size: cover;
background-position: center;
pointer-events: none;
opacity: .1;
filter: blur(10px);
}
} }
> .avatar { > .avatar {
@ -90,7 +102,7 @@ defineProps<{
> .mfm { > .mfm {
display: -webkit-box; display: -webkit-box;
-webkit-line-clamp: 3; -webkit-line-clamp: 3;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
overflow: hidden; overflow: hidden;
} }
} }