repo card: show_icons and other style issues

This commit is contained in:
martin-mfg
2025-05-22 12:46:03 +02:00
parent 4ce98f81c2
commit 8e1b09d965
2 changed files with 5 additions and 11 deletions
+2 -2
View File
@@ -117,9 +117,9 @@ export default async (req, res) => {
border_color,
show_owner: parseBoolean(show_owner),
show: showStats,
show_icons,
show_icons: parseBoolean(show_icons),
number_format,
text_bold,
text_bold: parseBoolean(text_bold),
line_height,
username,
locale: locale ? locale.toLowerCase() : null,
+3 -9
View File
@@ -80,7 +80,7 @@ const renderRepoCard = (repo, options = {}) => {
bg_color,
show_owner = false,
show = [],
show_icons,
show_icons = true,
number_format = "short",
text_bold,
line_height = 10,
@@ -260,13 +260,7 @@ const renderRepoCard = (repo, options = {}) => {
.badge { font: 600 11px 'Segoe UI', Ubuntu, Sans-Serif; }
.badge rect { opacity: 0.2 }
.stat {
font: 600 14px 'Segoe UI', Ubuntu, "Helvetica Neue", Sans-Serif; fill: ${colors.textColor};
}
@supports(-moz-appearance: auto) {
/* Selector detects Firefox */
.stat { font-size:12px; }
}
.stat { font: 400 12px 'Segoe UI', Ubuntu, Sans-Serif; fill: ${colors.textColor} }
.stagger {
opacity: 0;
animation: fadeInAnimation 0.3s ease-in-out forwards;
@@ -275,7 +269,7 @@ const renderRepoCard = (repo, options = {}) => {
.bold { font-weight: 700 }
.icon {
fill: ${colors.iconColor};
display: ${show_icons ? "block" : "none"};
display: block;
}
`);