Skip to content
Snippets Groups Projects
Commit 85740dd0 authored by syuilo's avatar syuilo
Browse files

fix(client): fix sidebar style

Fix #8049
parent b05cfe4a
No related branches found
No related tags found
No related merge requests found
......@@ -170,6 +170,8 @@ export default defineComponent({
}
&:hover, &.active {
color: var(--accent);
&:before {
content: "";
display: block;
......@@ -283,8 +285,10 @@ export default defineComponent({
}
&:before {
width: 100%;
border-radius: 0;
width: auto;
height: 100%;
aspect-ratio: 1/1;
border-radius: 8px;
}
&.post {
......@@ -296,8 +300,9 @@ export default defineComponent({
}
&.post:before {
width: calc(100% - 32px);
height: calc(100% - 32px);
width: calc(100% - 28px);
height: auto;
aspect-ratio: 1/1;
border-radius: 100%;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment