We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3672e86 commit 709b263Copy full SHA for 709b263
templates/components/menu_icon.html
@@ -0,0 +1,6 @@
1
+{% macro menu_icon(title) %}
2
+ <svg class="menu-icon" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
3
+ <title>{{ title }}</title>
4
+ <path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z"/>
5
+ </svg>
6
+{% endmacro %}
webpack/app/index.css
@@ -1,5 +1,6 @@
@import "styles/progress-bar.css";
@import "styles/header.css";
+@import "styles/menu-icon.css";
@import "styles/navbar.css";
@import "styles/text.css";
@import "styles/footer.css";
webpack/app/styles/menu-icon.css
@@ -0,0 +1,3 @@
+.menu-icon {
+ @apply fill-current h-3 w-3;
+}
0 commit comments