A progressive web app to display the angle bisector of two angles given by zodiac sign, degrees and minutes.
0
fork

Configure Feed

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

Change zodiac font to DejaVuSans

Signed-off-by: Release-Candidate <rec@gmx.at>

+6 -6
public/DejaVuSans.ttf

This is a binary file and will not be displayed.

public/FreeMonospaced-GNU.ttf

This is a binary file and will not be displayed.

+2 -2
src/ZodiacAngleInput.tsx
··· 103 103 <select 104 104 name={"zodiac" + props.id} 105 105 id={"zodiac" + props.id} 106 - class="bg-white" 106 + class="font-zodiac bg-white" 107 107 onChange={handleZ}> 108 108 <Index each={z.zodiacSlovak}> 109 109 {(zodiac, i) => ( ··· 148 148 max="59" 149 149 onChange={handleMin} 150 150 /> 151 - ' {z.zodiacSymbol(props.z.z)} 151 + ' 152 152 </form> 153 153 </> 154 154 );
+1 -1
src/ZodiacAnglesDisplay.tsx
··· 29 29 }> = (props) => ( 30 30 <> 31 31 <p 32 - class="m-2 rounded-md border-2 border-solid border-red-700 bg-gray-100 p-2 text-2xl font-bold" 32 + class="font-zodiac m-2 rounded-md border-2 border-solid border-red-700 bg-gray-100 p-2 text-2xl font-bold" 33 33 id="result_bisect"> 34 34 Bisectriz: 35 35 {" " + z.zodiacAngleString(z.bisectZodiacAngle(props.z1, props.z2))}
+2 -2
src/index.css
··· 4 4 5 5 @layer base { 6 6 @font-face { 7 - font-family: "FreeMono"; 7 + font-family: "DejaVuSans"; 8 8 font-style: normal; 9 9 font-weight: 400; 10 10 font-display: swap; 11 - src: url("./FreeMonospaced-GNU.ttf"); 11 + src: url("/DejaVuSans.ttf"); 12 12 } 13 13 }
+1 -1
tailwind.config.js
··· 4 4 theme: { 5 5 extend: { 6 6 fontFamily: { 7 - zodiac: ["FreeMono"], 7 + zodiac: ["DejaVuSans"], 8 8 }, 9 9 colors: { 10 10 DarkBrown: {