fix: 🚑 topics list, add gap with manage topics btn

1-auto-switch-between-dark-and-light-theme
Lucas Colombo 2 years ago
parent 85e6da11d0
commit a033ccd313

@ -2844,6 +2844,10 @@ footer .ui.dropdown .menu {
background-color: var(--c-elevation_4);
}
#repo-topics {
row-gap: var(--v-measure_\.5x);
}
.ui.table > tr > td, .ui.table > tbody > tr > td {
border-top-color: rgba(var(--c-theme_blue_base-rgb), 0.04);
}

@ -2844,6 +2844,10 @@ footer .ui.dropdown .menu {
background-color: var(--c-elevation_4);
}
#repo-topics {
row-gap: var(--v-measure_\.5x);
}
.ui.table > tr > td, .ui.table > tbody > tr > td {
border-top-color: rgba(var(--c-theme_blue_base-rgb), 0.04);
}

@ -3,6 +3,10 @@
@mixin apply-styles {
#repo-topics {
row-gap: var.get('measure/.5x');
}
.ui.table>tr>td, .ui.table>tbody>tr>td {
border-top-color: rgba(#{color.get('theme/blue/base', 'rgb')}, 0.04);
}

@ -13,7 +13,7 @@ const srcPath = resolve(cwd(), src);
const distPath = resolve(cwd(), dist);
const serverPath = resolve(
cwd(),
getArg('--sever', 'D:/users/lucas/Desktop/dev/server/gitea')
getArg('--sever', 'd:/gitea')
);
const debouncer = new TaskDebouncer(300);
const logger = new Logger('serve', 'info', 'brightMagenta');

Loading…
Cancel
Save