mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 16:39:58 +00:00
chore: format styles
This commit is contained in:
parent
1ba5cc4072
commit
337d2a8b43
2 changed files with 16 additions and 11 deletions
|
@ -24,7 +24,7 @@
|
|||
background: #8886;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
::-moz-selection {
|
||||
background: var(--c-bg-selection);
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,7 @@ body {
|
|||
}
|
||||
|
||||
.zen .zen-hide {
|
||||
--at-apply: op0 hover:op100 transition duration-600;
|
||||
--at-apply: 'op0 hover:op100 transition duration-600';
|
||||
}
|
||||
|
||||
.custom-emoji {
|
||||
|
@ -51,12 +51,12 @@ body {
|
|||
|
||||
.content-rich {
|
||||
a {
|
||||
--at-apply: text-primary hover:underline hover:text-primary-active;
|
||||
--at-apply: 'text-primary hover:underline hover:text-primary-active';
|
||||
.invisible {
|
||||
--at-apply: hidden;
|
||||
--at-apply: 'hidden';
|
||||
}
|
||||
.ellipsis {
|
||||
--at-apply: truncate overflow-hidden ws-nowrap;
|
||||
--at-apply: 'truncate overflow-hidden ws-nowrap';
|
||||
&::after {
|
||||
content: '…';
|
||||
}
|
||||
|
@ -95,21 +95,26 @@ body {
|
|||
}
|
||||
|
||||
.skeleton-loading-bg {
|
||||
background: linear-gradient(90deg,rgba(190,190,190,.2) 25%,rgba(129,129,129,.24) 37%,rgba(190,190,190,.2) 63%);
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
rgba(190, 190, 190, 0.2) 25%,
|
||||
rgba(129, 129, 129, 0.24) 37%,
|
||||
rgba(190, 190, 190, 0.2) 63%
|
||||
);
|
||||
background-size: 400% 100%;
|
||||
animation: skeleton-loading 1.4s ease infinite;
|
||||
}
|
||||
|
||||
@keyframes skeleton-loading {
|
||||
0% {
|
||||
background-position: 100% 50%
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
to {
|
||||
background-position: 0 50%
|
||||
background-position: 0 50%;
|
||||
}
|
||||
}
|
||||
|
||||
html, body , #__nuxt{
|
||||
html, body, #__nuxt {
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
opacity: 0.4;
|
||||
}
|
||||
|
||||
span[data-type="mention"] {
|
||||
--at-apply: text-primary
|
||||
span[data-type='mention'] {
|
||||
--at-apply: text-primary;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue