fix: border radius

This commit is contained in:
ShittyKopper 2023-11-07 16:01:02 +03:00
parent 739f958842
commit d536d0771b
6 changed files with 9 additions and 9 deletions

View file

@ -358,7 +358,7 @@ const rejectFollowRequest = () => {
width: 20px;
height: 20px;
box-sizing: border-box;
border-radius: 100%;
border-radius: var(--radius-full);
background: var(--panel);
box-shadow: 0 0 0 3px var(--panel);
font-size: 11px;

View file

@ -115,7 +115,7 @@ const exampleCWNote = reactive<Misskey.entities.Note>({
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
border-radius: var(--radius-ellipse);
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
}

View file

@ -125,7 +125,7 @@ const exampleNote = reactive<Misskey.entities.Note>({
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
border-radius: var(--radius-ellipse);
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
}

View file

@ -67,7 +67,7 @@ import { i18n } from '@/i18n.js';
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
border-radius: var(--radius-ellipse);
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
}

View file

@ -38,7 +38,7 @@ const text = $computed(() => {
.root {
box-shadow: 0 0 0 3px var(--panel);
// sharkey(ShittyKopper): the comment mentions something about 100% radius not behaving correctly on blink.
// sharkey: the comment mentions something about 100% radius not behaving correctly on blink.
// couldn't reproduce, assuming the 120% here was just an old workaround
border-radius: var(--radius-full); // Blink100%

View file

@ -159,7 +159,7 @@ watch(() => props.user.avatarBlurhash, () => {
display: inline-block;
vertical-align: bottom;
flex-shrink: 0;
border-radius: 100%;
border-radius: 100%; // sharkey: controlled by square avatars setting!
line-height: 16px;
}
@ -169,7 +169,7 @@ watch(() => props.user.avatarBlurhash, () => {
left: 0;
right: 0;
top: 0;
border-radius: 100%;
border-radius: 100%; // sharkey: controlled by square avatars setting!
z-index: 1;
overflow: clip;
object-fit: cover;
@ -187,10 +187,10 @@ watch(() => props.user.avatarBlurhash, () => {
}
.square {
border-radius: 20%;
border-radius: 20%; // sharkey: controlled by square avatars setting!
> .inner {
border-radius: 20%;
border-radius: 20%; // sharkey: controlled by square avatars setting!
}
}