Compare commits

..

26 Commits

Author SHA1 Message Date
7bd1f7778a
unnecessary comment removed 2022-08-02 16:59:48 +02:00
bcac680d87
empty line added 2022-08-02 16:54:55 +02:00
377f0dd743
updated paths in project 2022-08-02 16:47:28 +02:00
f4dc87d841
added autoscroll for contact form 2022-07-31 22:39:14 +02:00
1d9d84484d
fix scroll button 2022-07-31 22:22:08 +02:00
3e5c2a1c1d
fixed buttons 2022-07-31 15:15:29 +02:00
7476cfce33
final style update 2022-07-31 14:56:41 +02:00
53928e5250
updated mail contact 2022-07-31 12:46:44 +02:00
61b8ad6380
updated style for contact form 2022-07-25 14:34:10 +02:00
a4fe5e4efc
updated project view 2022-07-24 17:35:13 +02:00
5712c890af
updated about view 2022-07-24 17:35:13 +02:00
504fa251b7
updated footer style 2022-07-24 17:35:12 +02:00
d0e35a6d40
updated projects view 2022-07-24 17:35:04 +02:00
5de10940d9
updated buttons 2022-07-24 15:02:20 +02:00
8e9d3f138c
updated favorite projects 2022-07-24 15:01:57 +02:00
412bc5fca1
improved responsiveness 2022-07-24 11:11:32 +02:00
11c72a9389
WIP 2022-07-14 00:33:28 +02:00
cc9a4af7d0
updated experiences style - tailwind 2022-07-13 23:13:31 +02:00
90cdb2bf30
updated about section - tailwind 2022-07-13 22:13:11 +02:00
8ddbfe6598
updated colors 2022-07-13 21:27:59 +02:00
1ea49ec0e5
updated header style - tailwind 2022-07-13 21:27:23 +02:00
661c408a18
updated footer style - tailwind 2022-07-13 20:36:56 +02:00
cbfb67945a
updated container size for navigation 2022-07-13 20:36:24 +02:00
401f4e1b3c
removed old style 2022-07-13 19:55:59 +02:00
d726af2639
updated menu - tailwind 2022-07-13 13:42:27 +02:00
087a638589
installed tailwind 2022-07-13 09:58:17 +02:00
3 changed files with 1093 additions and 1131 deletions

2190
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "kamilcraft.com",
"version": "1.1.0",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
@ -8,27 +8,27 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/vue-fontawesome": "^3.0.1",
"core-js": "^3.25.0",
"marked": "^4.1.0",
"vue": "^3.2.38",
"core-js": "^3.8.3",
"marked": "^4.0.18",
"vue": "^3.2.37",
"vue-meta": "^2.4.0",
"vue-router": "^4.1.5",
"vue-router": "^4.1.2",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"autoprefixer": "^10.4.7",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.7.1",
"eslint-plugin-vue": "^8.0.3",
"postcss": "^8.4.14",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",

View File

@ -20,8 +20,8 @@
class="mr-1"
:icon="['fab', link.icon]"
/>
<span class="hidden lg:inline-block">{{ link.title }}</span>
<span class="hidden sm:inline-block lg:hidden">{{ link.shortcut }}</span>
<span class="hidden md:inline-block">{{ link.title }}</span>
<span class="hidden sm:inline-block md:hidden">{{ link.shortcut }}</span>
</a>
</li>
</ul>
@ -42,12 +42,6 @@ const socialLinks = [
icon: 'facebook',
title: 'Znajdź mnie na Facebooku',
shortcut: 'Facebook'
},
{
link: 'https://github.com/kamilniemczycki/kamilcraft.com',
icon: 'github',
title: 'Kod na GitHub',
shortcut: 'GitHub'
}
]
</script>