parent
b05cfe4a84
commit
85740dd09f
1 changed files with 9 additions and 4 deletions
|
@ -170,6 +170,8 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover, &.active {
|
&:hover, &.active {
|
||||||
|
color: var(--accent);
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: "";
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -283,8 +285,10 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
width: 100%;
|
width: auto;
|
||||||
border-radius: 0;
|
height: 100%;
|
||||||
|
aspect-ratio: 1/1;
|
||||||
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.post {
|
&.post {
|
||||||
|
@ -296,8 +300,9 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
&.post:before {
|
&.post:before {
|
||||||
width: calc(100% - 32px);
|
width: calc(100% - 28px);
|
||||||
height: calc(100% - 32px);
|
height: auto;
|
||||||
|
aspect-ratio: 1/1;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue