Skip to content

Commit ab29c25

Browse files
authored
Merge pull request #1 from rawheel/tailwind
Tailwind
2 parents 573d73a + 4794852 commit ab29c25

9 files changed

+1728
-158
lines changed

package-lock.json

+1,666-89
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"serve": "vue-cli-service serve",
77
"build": "vue-cli-service build",
88
"lint": "vue-cli-service lint",
9-
"start":"node server.js"
9+
"start": "node server.js"
1010
},
1111
"dependencies": {
1212
"axios": "^0.21.1",
@@ -19,12 +19,16 @@
1919
"vue-axios": "^3.2.4"
2020
},
2121
"devDependencies": {
22+
"@tailwindcss/postcss7-compat": "^2.0.3",
2223
"@vue/cli-plugin-babel": "~4.5.0",
2324
"@vue/cli-plugin-eslint": "~4.5.0",
2425
"@vue/cli-service": "~4.5.0",
26+
"autoprefixer": "^9.8.6",
2527
"babel-eslint": "^10.1.0",
2628
"eslint": "^6.7.2",
2729
"eslint-plugin-vue": "^6.2.2",
30+
"postcss": "^7.0.35",
31+
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
2832
"vue-template-compiler": "^2.6.11"
2933
},
3034
"eslintConfig": {

postcss.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}

src/App.vue

+18-55
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
<template>
2-
<div id="app">
2+
<div id="app" class = 'bg-white w-full h-screen font-sans md:font-serif md:justify-self-center'>
3+
34
<div>
4-
<nav class="navbar navbar-dark bg-dark" style="width:100%;margin:0;padding:0">
5-
<button class="nav-link" @click="home" style="color:white;background-color:#343A40;border:none">Home </button>
5+
<nav class="navbar navbar-expand-lg navbar-light bg-dark">
6+
<button class="nav-link" @click="home" style="color:white;border:none">Home </button>
67
</nav>
78
</div>
9+
10+
<div class="grid justify-items-center">
811
<div class="question-box-container">
912
<div class="name-head" >
10-
<h1 style="font-size:18px">MyUnfollowers</h1>
11-
<a href="https://github.com/rawheel" style="color:black;font-size:9px" target="_blank">by Raheel Siddiqui</a>
13+
<h1 style="font-size:2rem">MyUnfollowers</h1>
14+
<p><a href="https://github.com/rawheel" style="color:black;font-size:0.7rem" target="_blank">by Raheel Siddiqui</a></p>
1215

1316

1417
</div>
15-
<b-jumbotron>
18+
<div class="bg-gray-100 shadow-md rounded md:rounded-full pt-6 pb-8 mb-4 flex flex-col my-2">
1619

1720
<div class = "github-img">
1821
<img id="github" :src="avatar">
1922
</div>
20-
<h4><a :href="gitURL" style="color:#343A40;font-size:14px" target="_blank">{{ gitUsername }}</a></h4>
21-
<div class="hr-container">
23+
<h4><a :href="gitURL" style="color:#343A40;font-size:1rem" target="_blank">{{ gitUsername }}</a></h4>
24+
<div style="padding-right:30px;padding-left:30px">
2225
<hr>
2326
</div>
2427
<div class = "pages" >
@@ -48,9 +51,10 @@
4851
</div>
4952

5053

51-
</b-jumbotron>
5254
</div>
53-
55+
</div>
56+
57+
</div>
5458
</div>
5559
</template>
5660

@@ -162,17 +166,12 @@ export default {
162166
.question-box-container{
163167
display: inline-block;
164168
text-align: center;
165-
margin-left:25%;
166-
margin-right: 25%;
169+
167170
168171
}
169172
h4{
170173
margin-top:2px;
171-
color:#343A40;
172174
font-style:italic;
173-
font-size:22px;
174-
175-
176175
}
177176
.name-head{
178177
@@ -186,53 +185,17 @@ h4{
186185
font-family: 'Segoe UI';
187186
}
188187
189-
.jumbotron{
190-
padding:0;
191-
padding-bottom: 2.5%;
192-
margin-top:3%;
193-
margin-left:18%;
194-
margin-right: 18%;
195-
border-radius:40px;
196-
filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.161));
197-
height:auto;
198-
background-color: rgba(245,245,245,1);
199-
200-
}
201-
202-
203-
.main-container {
204-
205-
display: inline-block;
206-
text-align: center;
207-
width:1200px;
208-
height:auto;
209-
padding: 0;
210-
margin-left: 15%;
211-
margin-right: 15%;
212-
}
213-
214188
.github-img img{
215189
216190
display: inline-block;
217191
text-align: center;
218192
margin-top:2%;
219-
border-radius:50%;
220-
221-
222-
223-
224-
width:20%;
225-
height:auto;
193+
border-radius:50%;
194+
width:15%;
195+
height:auto;
226196
227197
}
228-
.hr-container{
229-
padding: 0;
230-
margin: 0;
231-
display: inline-block;
232-
text-align: center;
233-
width:80%;
234198
235-
}
236199
.pages{
237200
margin-top:5%
238201
}

src/components/FirstPage.vue

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
<div class = "first-container">
44
<div><p>Lets raid who unfollows you!</p></div>
5-
<input v-model="getusername" type="username" class="form-control" id="inputusername" placeholder="@username">
6-
<button type="button" class="btn btn-dark" @click="emitUsername" @keyup.enter="emitUsername">Go</button>
5+
<input v-model="getusername" type="username" @keyup.enter="emitUsername" id="inputusername" class="focus:ring-indigo-500 focus:border-indigo-500 block w-full pl-7 pr-12 sm:text-sm border-gray-300 rounded-md" placeholder="@username">
6+
<button type="button" class="btn btn-dark" @click="emitUsername" >
7+
8+
Go
9+
</button>
710
</div>
811
</template>
912
<script>
@@ -52,7 +55,7 @@ input{
5255
5356
button{
5457
55-
font-size: 9px;
58+
font-size: 0.5rem;
5659
border-radius: 20px;
5760
}
5861
.bottom:hover{

src/components/MainPage.vue

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
<div class="row">
44
<div class="column">
55
<div>
6-
<p style="font-size:7px">TOTAL FOLLOWERS</p>
6+
<p style="font-size:0.5rem">TOTAL FOLLOWERS</p>
77
<h5 style="padding:0">{{ this.apiData.totalfollowers }}</h5>
88
</div>
99
</div>
1010
<div class="column">
11-
<p style="font-size:7px">TOTAL NEWFOLLOWERS</p>
11+
<p style="font-size:0.5rem">TOTAL NEWFOLLOWERS</p>
1212
<h5>{{ this.apiData.totalnewfollowers }}</h5>
1313

1414
</div>
1515

1616
<div class="column">
1717

18-
<p style="font-size:7px">TOTAL UNFOLLOWERS</p>
18+
<p style="font-size:0.5rem">TOTAL UNFOLLOWERS</p>
1919
<h5>{{ this.apiData.totalunfollowers }}</h5 >
2020
</div>
2121
</div>
22-
<div>
23-
<div class="table-wrapper-scroll-y my-custom-scrollbar">
24-
<b-table table :items="finalFollowers" style="font-size:6px;"></b-table>
25-
</div>
26-
</div>
22+
<div>
23+
24+
<b-table table :items="finalFollowers" style="font-size:0.5rem;"></b-table>
25+
26+
</div>
2727
</div>
2828
</template>
2929

@@ -89,7 +89,7 @@ export default {
8989
9090
}
9191
h5{
92-
font-size:9px;
92+
font-size:0.5rem;
9393
}
9494
9595
/* Clear floats after the columns */

src/index.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

src/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Vue from 'vue'
22
import App from './App.vue'
3-
3+
import './index.css'
44
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
55

66
// Import Bootstrap an BootstrapVue CSS files (order is important)

tailwind.config.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
purge: ['./public/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
3+
darkMode: false, // or 'media' or 'class'
4+
theme: {
5+
container:{
6+
center: true,
7+
},
8+
extend: {},
9+
},
10+
variants: {
11+
extend: {},
12+
},
13+
plugins: [],
14+
}

0 commit comments

Comments
 (0)