Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshusanecha authored Sep 25, 2021
1 parent 899d85a commit 3ec058c
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 7 deletions.
1 change: 1 addition & 0 deletions dist/css/app.c2f72f17.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet"><script src="three.r119.min.js"></script><title>portfolio</title><script src="https://platform.linkedin.com/badges/js/profile.js" async defer></script><link href="/css/app.78d5e612.css" rel="preload" as="style"><link href="/css/chunk-vendors.57c1fb4c.css" rel="preload" as="style"><link href="/js/app.9597cebc.js" rel="preload" as="script"><link href="/js/chunk-vendors.dbde223d.js" rel="preload" as="script"><link href="/css/chunk-vendors.57c1fb4c.css" rel="stylesheet"><link href="/css/app.78d5e612.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but portfolio doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/js/chunk-vendors.dbde223d.js"></script><script src="/js/app.9597cebc.js"></script></body></html>
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet"><title>portfolio</title><link href="/css/app.c2f72f17.css" rel="preload" as="style"><link href="/css/chunk-vendors.57c1fb4c.css" rel="preload" as="style"><link href="/js/app.ef95ee27.js" rel="preload" as="script"><link href="/js/chunk-vendors.dbde223d.js" rel="preload" as="script"><link href="/css/chunk-vendors.57c1fb4c.css" rel="stylesheet"><link href="/css/app.c2f72f17.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but portfolio doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/js/chunk-vendors.dbde223d.js"></script><script src="/js/app.ef95ee27.js"></script></body></html>
2 changes: 2 additions & 0 deletions dist/js/app.ef95ee27.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/js/app.ef95ee27.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet">
<script src="three.r119.min.js"></script>
<title><%= htmlWebpackPlugin.options.title %></title>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
</head>

<body>
Expand Down
16 changes: 15 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div id="app">
<Loading v-if="loading" />
<div v-else>
<div v-else class="mt-3">
<Page />
<particles-bg type="circle" :num="5" :bg="true" />
</div>
Expand Down Expand Up @@ -36,5 +36,19 @@ export default {
font-family: "Roboto Slab", serif;
font-size: 25px;
}
@media only screen and (max-width: 600px) {
#app {
overflow-x: hidden;
overflow-y: hidden;
margin-top: 0.5%;
}
}
@media only screen and (min-width: 600px) {
#app {
overflow-x: hidden;
overflow-y: hidden;
margin-top: 0.5%;
}
}
</style>
2 changes: 1 addition & 1 deletion src/components/MyCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="mycard">
<div class="card">
<div class="card-body">
<h5 class="card-title">Hello! Myself Himanshu Sanecha</h5>
<h5 class="card-title">About</h5>
<p class="card-text">
🙋 Hello myself Himanshu Sanecha.<br />
🏠 Currently pursuing my undergraduate in IIIT Vadodara.<br />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="nav-bar mt-3">
<div class="nav-bar mt-5">
<span class="mx-auto" >
<ul class="nav justify-content-center">
<li class="nav-item fontmax" @click="ChangeRoute('#About')" :class="{active: value=='#About'}"><vs-button
Expand Down
2 changes: 1 addition & 1 deletion src/components/Page.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>
<div class="mt-5">
<Navbar />
<div class="container" data-aos="fade-up" data-aos-duration="1000" id="About">
<div class="row justify-content-center">
Expand Down

0 comments on commit 3ec058c

Please sign in to comment.