Compare commits

..

5 Commits

Author SHA1 Message Date
xdrm a0e77f816d
feat: change theme to yellow-green 2024-09-24 22:59:57 +02:00
xdrm e1aa5b948a
feat: preload google fonts 2024-09-24 22:58:48 +02:00
xdrm e5856c39ec
feat: update google fonts 2024-09-24 22:50:26 +02:00
xdrm fa71f5c909
feat: set initial scale to 1
- otherwise 300ms delay for being zoomable on smartphones
2024-09-24 22:42:49 +02:00
xdrm ccf518f30e
chore: yarn upgrade 2024-09-23 19:02:55 +02:00
1 changed files with 3 additions and 2 deletions

View File

@ -3,13 +3,14 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=.4"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel='stylesheet' href='styles.css'> <link rel='stylesheet' href='styles.css'>
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Source+Sans+Pro&display=swap" rel="stylesheet"> <link rel="preload" href="https://fonts.googleapis.com/css?family=Source%20Sans%20Pro&display=swap" as="style">
<link rel="stylesheet"href="https://fonts.googleapis.com/css?family=Source%20Sans%20Pro&display=swap" media="all">
<title>xdrm()</title> <title>xdrm()</title>
</head> </head>