]> Untitled Git - lemmy-ui.git/blob - src/assets/css/themes/litely-compact.scss
Merge branch 'LemmyNet:main' into added-darkly-compact-552
[lemmy-ui.git] / src / assets / css / themes / litely-compact.scss
1 @import "variables.litely-compact";
2
3 /*
4     GENERAL
5 */
6
7 // Desktop Breakpoint
8 $container-max-widths: (
9   lg: 1920px,
10 );
11
12 // Reduce hr height
13 hr.my-3 {
14   margin-top: 0.5rem !important;
15   margin-bottom: 0.5rem !important;
16 }
17
18 /*
19     POST-LISTING
20 */
21
22 .post-listing {
23   line-height: 1;
24
25   .post-title h5 {
26     margin: 0;
27   }
28
29   .post-title + p {
30     padding-top: 0.125rem !important;
31     padding-bottom: 0.125rem !important;
32   }
33
34   .community-link {
35     padding-left: 0.125rem;
36   }
37
38   .person-listing {
39     padding-right: 0.125rem;
40   }
41
42   ul.list-inline {
43     &.mt-2 {
44       margin-top: 0.125rem !important;
45     }
46     &.mb-1 {
47       margin-bottom: 0.125rem !important;
48     }
49   }
50
51   .btn-sm {
52     --bs-btn-padding-y: 0;
53   }
54   .img-icon {
55     display: none;
56   }
57 }
58
59 @import "../../../../node_modules/bootstrap/scss/bootstrap";