summaryrefslogtreecommitdiff
path: root/app/javascript/stylesheets
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-05 23:28:30 -0400
committerDavid Gay <david@davidgay.org>2021-04-05 23:28:30 -0400
commit504513d1b47a8dfc9dccfca7b7113bbfdfbaa21c (patch)
tree7e5a846fbd5b193b9941976c4889879c174300c5 /app/javascript/stylesheets
parent5fdb938b522a14c8f1d1c611a0003ad45850e95f (diff)
Basic FE setup
Diffstat (limited to 'app/javascript/stylesheets')
-rw-r--r--app/javascript/stylesheets/application.css4
-rw-r--r--app/javascript/stylesheets/components.css0
-rw-r--r--app/javascript/stylesheets/core.css10
-rw-r--r--app/javascript/stylesheets/typography.css0
4 files changed, 13 insertions, 1 deletions
diff --git a/app/javascript/stylesheets/application.css b/app/javascript/stylesheets/application.css
index 229e18d..e53c520 100644
--- a/app/javascript/stylesheets/application.css
+++ b/app/javascript/stylesheets/application.css
@@ -1,6 +1,8 @@
@import "tailwindcss/base";
@import "tailwindcss/components";
-/* Other imports go here. */
+@import "core.css";
+@import "components.css";
+@import "typography.css";
@import "tailwindcss/utilities";
diff --git a/app/javascript/stylesheets/components.css b/app/javascript/stylesheets/components.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/javascript/stylesheets/components.css
diff --git a/app/javascript/stylesheets/core.css b/app/javascript/stylesheets/core.css
new file mode 100644
index 0000000..a174cfb
--- /dev/null
+++ b/app/javascript/stylesheets/core.css
@@ -0,0 +1,10 @@
+a {
+ @apply underline text-blue-800;
+}
+a:hover {
+ @apply text-blue-500;
+}
+
+p {
+ margin-top: 1rem;
+}
diff --git a/app/javascript/stylesheets/typography.css b/app/javascript/stylesheets/typography.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/javascript/stylesheets/typography.css