diff --git a/src/App.vue b/src/App.vue
index dc7a822..4f64835 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -12,6 +12,22 @@
+
+
diff --git a/src/assets/css/tailwind.css b/src/assets/css/tailwind.css
index 3a3a0b3..850d5e3 100644
--- a/src/assets/css/tailwind.css
+++ b/src/assets/css/tailwind.css
@@ -2,6 +2,16 @@
@tailwind components;
+.btn {
+ @apply px-4 py-3 inline-block text-lg rounded-lg
+}
+
+.btn-blue {
+ @apply bg-blue-500 border border-blue-600 text-white;
+ @apply transition-colors ease-in-out duration-300;
+ @apply hover:bg-blue-550
+}
+
.embed-responsive {
@apply block relative h-0 p-0 overflow-hidden;
padding-bottom: 56.25%
diff --git a/tailwind.config.js b/tailwind.config.js
index cf7b5ed..50af5fa 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -3,7 +3,11 @@ module.exports = {
theme: {
colors: {
black: '#222',
- blue: '#204d74',
+ blue: {
+ 500: '#337ab7',
+ 550: '#286090',
+ 600: '#204d74'
+ },
white: '#fff',
yellow: '#fde546'
},
@@ -11,4 +15,7 @@ module.exports = {
},
variants: {},
plugins: [],
+ experimental: {
+ applyComplexClasses: true
+ }
}