Skip to content

Commit ca34451

Browse files
committed
chore
1 parent 2c015a2 commit ca34451

File tree

1 file changed

+17
-0
lines changed
  • webpack_boilerplate/frontend_template/{{cookiecutter.project_slug}}/src/styles

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)