The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: font weight consistency

+11 -6
+4 -2
quartz/components/styles/explorer.scss
··· 1 + @use "../../styles/variables.scss" as *; 2 + 1 3 button#explorer { 2 4 all: unset; 3 5 background-color: transparent; ··· 85 87 color: var(--secondary); 86 88 font-family: var(--headerFont); 87 89 font-size: 0.95rem; 88 - font-weight: 600; 90 + font-weight: $boldWeight; 89 91 line-height: 1.5rem; 90 92 display: inline-block; 91 93 } ··· 110 112 font-size: 0.95rem; 111 113 display: inline-block; 112 114 color: var(--secondary); 113 - font-weight: 600; 115 + font-weight: $boldWeight; 114 116 margin: 0; 115 117 line-height: 1.5rem; 116 118 pointer-events: none;
+2 -2
quartz/components/styles/search.scss
··· 138 138 font-family: inherit; 139 139 color: var(--dark); 140 140 line-height: 1.5em; 141 - font-weight: 400; 141 + font-weight: $normalWeight; 142 142 background: var(--light); 143 143 border-top-right-radius: 5px; 144 144 border-bottom-right-radius: 5px; ··· 198 198 padding: 0.2rem 0.4rem; 199 199 margin: 0 0.1rem; 200 200 line-height: 1.4rem; 201 - font-weight: bold; 201 + font-weight: $boldWeight; 202 202 color: var(--secondary); 203 203 204 204 &.match-tag {
+1 -1
quartz/styles/base.scss
··· 54 54 } 55 55 56 56 a { 57 - font-weight: 600; 57 + font-weight: $boldWeight; 58 58 text-decoration: none; 59 59 transition: color 0.2s ease; 60 60 color: var(--secondary);
+2 -1
quartz/styles/callouts.scss
··· 1 + @use "./variables.scss" as *; 1 2 @use "sass:color"; 2 3 3 4 .callout { ··· 156 157 } 157 158 158 159 .callout-title-inner { 159 - font-weight: 700; 160 + font-weight: $boldWeight; 160 161 } 161 162 }
+2
quartz/styles/variables.scss
··· 4 4 $sidePanelWidth: 380px; 5 5 $topSpacing: 6rem; 6 6 $fullPageWidth: $pageWidth + 2 * $sidePanelWidth; 7 + $boldWeight: 700; 8 + $normalWeight: 400;