-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from gokhannozturk/feat/add-styles
feat: adds tailwindcss
- Loading branch information
Showing
15 changed files
with
2,470 additions
and
2,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import '../src/index.css'; | ||
import HelloWorld from '../src/components/HelloWorld.vue'; | ||
|
||
export { HelloWorld }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,7 @@ | ||
<script setup lang="ts"> | ||
// import HelloWorld from './components/HelloWorld.vue'; | ||
import TheWelcome from './components/TheWelcome.vue'; | ||
import { HelloWorld as HelloWorld2 } from '../dist/design-system-vue.js'; | ||
import { HelloWorld } from '../dist/design-system-vue.js'; | ||
</script> | ||
|
||
<template> | ||
<header> | ||
<img | ||
alt="Vue logo" | ||
class="logo" | ||
src="./assets/logo.svg" | ||
width="125" | ||
height="125" | ||
/> | ||
|
||
<div class="wrapper"> | ||
<!-- <HelloWorld msg="You did it!" /> --> | ||
<HelloWorld2 msg="ben kit" /> | ||
</div> | ||
</header> | ||
|
||
<main> | ||
<TheWelcome /> | ||
</main> | ||
<HelloWorld msg="ben kit" class="text-3xl font-bold underline" /> | ||
</template> | ||
|
||
<style scoped> | ||
header { | ||
line-height: 1.5; | ||
} | ||
.logo { | ||
display: block; | ||
margin: 0 auto 2rem; | ||
} | ||
@media (min-width: 1024px) { | ||
header { | ||
display: flex; | ||
place-items: center; | ||
padding-right: calc(var(--section-gap) / 2); | ||
} | ||
.logo { | ||
margin: 0 2rem 0 0; | ||
} | ||
header .wrapper { | ||
display: flex; | ||
place-items: flex-start; | ||
flex-wrap: wrap; | ||
} | ||
} | ||
</style> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.