mirror of
https://github.com/mue/mue.git
synced 2026-06-12 03:28:46 +02:00
fix: quote skeleton
This commit is contained in:
@@ -138,25 +138,17 @@ h1.quoteauthor {
|
||||
}
|
||||
|
||||
.author-content.whileLoading {
|
||||
gap: 5px;
|
||||
.title {
|
||||
color: transparent;
|
||||
width: 100px;
|
||||
background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
|
||||
background-size: 200% 100%;
|
||||
animation: 1.5s shine linear infinite;
|
||||
}
|
||||
.subtitle {
|
||||
color: transparent;
|
||||
width: 50px;
|
||||
background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
|
||||
background-size: 200% 100%;
|
||||
animation: 1.5s shine linear infinite;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shine {
|
||||
to {
|
||||
background-position-x: -200%;
|
||||
@include themed() {
|
||||
gap: 5px;
|
||||
.title {
|
||||
color: transparent;
|
||||
width: 100px;
|
||||
background: t($modal-sidebar);
|
||||
}
|
||||
.subtitle {
|
||||
color: transparent;
|
||||
width: 50px;
|
||||
background: t($modal-sidebarActive);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
46
src/modules/helpers/settings/achievements.json
Normal file
46
src/modules/helpers/settings/achievements.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"achievements": [
|
||||
{
|
||||
"name": "10/10 IGN",
|
||||
"description": "Opened 10 tabs",
|
||||
"condition": {
|
||||
"tabsOpened": "10"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Thank you",
|
||||
"description": "Opened 39 tabs",
|
||||
"condition": {
|
||||
"tabsOpened": 39
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Seasoning",
|
||||
"description": "Opened 100 tabs",
|
||||
"condition": {
|
||||
"tabsOpened": 100
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Mr Worldwide",
|
||||
"description": "Opened 305 tabs",
|
||||
"condition": {
|
||||
"tabsOpened": 305
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Average linux user",
|
||||
"description": "Installed an add-on",
|
||||
"condition": {
|
||||
"addonInstall": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Fully riced",
|
||||
"description": "Installed 5 add-ons",
|
||||
"condition": {
|
||||
"addonInstall": 5
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user