Skip to content

Commit

Permalink
fix: tailwind font
Browse files Browse the repository at this point in the history
  • Loading branch information
wojpo committed May 30, 2024
1 parent 0fdf7d8 commit 7ee879b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions core/templates/core/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,14 @@
<link href="{% static 'fontawesomefree/css/fontawesome.css' %}" rel="stylesheet" type="text/css">
<link href="{% static 'fontawesomefree/css/brands.css' %}" rel="stylesheet" type="text/css">
<link href="{% static 'fontawesomefree/css/solid.css' %}" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">

<link rel="icon" type="image/x-icon" href="{% static 'images/favicon.png' %}">

{% block head %}
{% endblock %}
</head>
<body style=" font-family: Inter, sans-serif; font-optical-sizing: auto; font-style: normal;" class="bg-gray-900 text-gray-50">
<body class="bg-gray-900 text-gray-50 font-inter">
<main class="flex flex-col h-screen w-screen">
{% language 'pl-pl' %}
{% block content %}
Expand Down
3 changes: 3 additions & 0 deletions static/tailwind_custom_styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
tailwind.config = {
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
borderWidth: {
'12': '12px',
},
Expand Down

0 comments on commit 7ee879b

Please sign in to comment.