Skip to content

Commit

Permalink
Merge pull request #3 from leon-luna-ray/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
leon-luna-ray committed Sep 29, 2023
2 parents 56e83df + 7b026c7 commit 5503fde
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copymoji
# CopyMoji 👯‍♀️

🚧 In development 🚧

Expand All @@ -12,6 +12,7 @@ This is a web app that allows desktop computer users to easily find and copy emo
- Cloudflare
- CSS3
- HTML5
- JavaScript
- TailwindCSS
- Vite.js
- Vue.js
4 changes: 2 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<header>
<div class="container flex-col-center py-[2rem] gap-y-[1rem]">
<h1>CopyMoji</h1>
<h1>CopyMoji 👯‍♀️</h1>
<div class="flex-col-center">
<p>Click an emoji to copy it to the clipboard!</p>
<p>🚧 👷🏻‍♂️ This app is development </p>
<p>👷🏻‍♂️ This app is development 🚧</p>
</div>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion assets/styles/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
@apply dark:bg-gray-950 dark:text-white;
}
h1, .h1 {
@apply text-[4rem];
@apply text-[4rem] font-young;
}
}
1 change: 1 addition & 0 deletions assets/styles/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
1 change: 1 addition & 0 deletions assets/styles/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import url('./base.css');
@import url('./components.css');
@import url('./fonts.css');
@import url('./utilities.css');
6 changes: 5 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ module.exports = {
// '2xl': '6rem',
},
},
extend: {},
extend: {
fontFamily: {
young: ['Young Serif', 'serif'],
},
},
},
variants: {
extend: {
Expand Down

0 comments on commit 5503fde

Please sign in to comment.