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 2c015a2 commit ca34451Copy full SHA for ca34451
webpack_boilerplate/frontend_template/{{cookiecutter.project_slug}}/src/styles/index.css
@@ -0,0 +1,17 @@
1
+@import "tailwindcss";
2
+
3
+.jumbotron {
4
+ /*should be relative path of the entry css file*/
5
+ background-image: url("../../vendors/images/sample.jpg");
6
+ background-size: cover;
7
+}
8
9
+@layer components{
10
+ .btn-blue {
11
+ @apply inline-flex items-center;
12
+ @apply px-4 py-2;
13
+ @apply font-semibold rounded-lg shadow-md;
14
+ @apply text-white bg-blue-500;
15
+ @apply hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400/50;
16
+ }
17
0 commit comments