Skip to content

Instantly share code, notes, and snippets.

@KabakiAntony
Created October 30, 2022 17:55
Show Gist options
  • Save KabakiAntony/34286044a8abbeb65cf650a9613d4eb2 to your computer and use it in GitHub Desktop.
Save KabakiAntony/34286044a8abbeb65cf650a9613d4eb2 to your computer and use it in GitHub Desktop.
this will help you make some changes to the css
{% extends 'admin/base.html' %}
{% block extrastyle %}{{ block.super }}
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
:root {
--primary: #1fc55e;
--secondary: #4f9b6c;
--link-fg: #127438;
--link-selected-fg: #71c792;
}
body {
font-family: 'Poppins', sans-serif;
}
</style>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment