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