added litely-compact

This commit is contained in:
dankxiaobong 2023-06-21 13:46:31 +02:00
parent 6d13c84f69
commit 1c0f4f6002
4 changed files with 12101 additions and 0 deletions

View file

@ -0,0 +1 @@
@import "variables.litely";

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,59 @@
@import "variables.litely-compact";
/*
GENERAL
*/
// Desktop Breakpoint
$container-max-widths: (
lg: 1920px,
);
// Reduce hr height
hr.my-3 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
/*
POST-LISTING
*/
.post-listing {
line-height: 1;
.post-title h5 {
margin: 0;
}
.post-title + p {
padding-top: 0.125rem !important;
padding-bottom: 0.125rem !important;
}
.community-link {
padding-left: 0.125rem;
}
.person-listing {
padding-right: 0.125rem;
}
ul.list-inline {
&.mt-2 {
margin-top: 0.125rem !important;
}
&.mb-1 {
margin-bottom: 0.125rem !important;
}
}
.btn-sm {
--bs-btn-padding-y: 0;
}
.img-icon {
display: none;
}
}
@import "../../../../node_modules/bootstrap/scss/bootstrap";

View file

@ -10,6 +10,7 @@ const themes = [
"darkly-compact", "darkly-compact",
"litely", "litely",
"litely-red", "litely-red",
"litely-compact",
]; ];
export async function buildThemeList(): Promise<string[]> { export async function buildThemeList(): Promise<string[]> {