1
0

Merge pull request #124 from ShittyKopper/corner-radius

Quick-and-dirty corner roundness toggle
This commit is contained in:
Amelia Yukii
2023-11-01 21:44:10 +01:00
committed by GitHub
134 changed files with 277 additions and 220 deletions
+5 -5
View File
@@ -699,7 +699,7 @@ function readPromo() {
padding: 0 4px;
margin-bottom: 0 !important;
background: var(--popup);
border-radius: 5px;
border-radius: var(--radius-sm);
box-shadow: 0px 4px 32px var(--shadow);
}
@@ -831,7 +831,7 @@ function readPromo() {
left: 8px;
width: 5px;
height: calc(100% - 16px);
border-radius: 4px;
border-radius: var(--radius-ellipse);
pointer-events: none;
}
@@ -871,7 +871,7 @@ function readPromo() {
background: var(--popup);
padding: 6px 10px;
font-size: 0.8em;
border-radius: 4px;
border-radius: var(--radius-ellipse);
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
}
@@ -901,7 +901,7 @@ function readPromo() {
background: var(--panel);
padding: 6px 10px;
font-size: 0.8em;
border-radius: 4px;
border-radius: var(--radius-ellipse);
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
}
@@ -937,7 +937,7 @@ function readPromo() {
.quoteNote {
padding: 16px;
border: dashed 1px var(--renote);
border-radius: 5px;
border-radius: var(--radius-sm);
overflow: clip;
}