Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/views/articles/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class="prose prose-lg text-gray-800 prose-lio"

@if ($article->author()->hasTwitterAccount())
<a href="https://twitter.com/{{ $article->author()->twitter() }}" class="text-twitter">
<x-icon-twitter class="w-6 h-6" />
<x-si-x class="w-6 h-6" />
</a>
@endif

Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/articles/engage.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<a class="text-gray-300 hover:text-twitter" target="_blank" rel="noopener" aria-label="Share on Twitter"
href="http://twitter.com/share?text={{ urlencode('"'.$article->title().'" by '. ($article->author()->twitter() ? '@'.$article->author()->twitter() : $article->author()->name()) . ' - ') }}&url={{ urlencode(route('articles.show', $article->slug())) }}">
<x-icon-twitter class="w-6 h-6" />
<x-si-x class="w-6 h-6" />
</a>

<a class="text-gray-300 hover:text-facebook" target="_blank" rel="noopener" aria-label="Share on Facebook"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/users/profile-block.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

@if ($user->hasTwitterAccount())
<a href="https://twitter.com/{{ $user->twitter() }}" class="text-twitter">
<x-icon-twitter class="w-6 h-6" />
<x-si-x class="w-6 h-6" />
</a>
@endif

Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/_footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

<div class="flex flex-wrap lg:flex-col lg:flex-no-wrap">
<a href="https://twitter.com/laravelio" class="w-1/2 text-gray-400 mb-4 hover:text-gray-200 lg:mb-6">
<x-icon-twitter class="text-white w-4 h-4 inline mr-3.5"/>
<x-si-x class="text-white w-4 h-4 inline mr-3.5"/>
Twitter
</a>

Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/_nav.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@

<li class="mb-4 lg:hover:bg-gray-100 lg:mb-0">
<a href="https://twitter.com/laravelio" class="inline-block w-full lg:px-4 lg:py-3">
<x-icon-twitter class="w-4 h-4 inline text-twitter"/>
<x-si-x class="w-4 h-4 inline text-twitter"/>
Twitter
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/users/profile.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class="w-full bg-center bg-gray-800 h-60"

@if ($user->hasTwitterAccount())
<a href="https://twitter.com/{{ $user->twitter() }}" class="text-twitter">
<x-icon-twitter class="w-6 h-6" />
<x-si-x class="w-6 h-6" />
</a>
@endif

Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = {
800: '#484a4a',
900: '#343636',
},
twitter: '#00aaec',
twitter: '#000000',
discord: '#7289da',
facebook: '#4267b2',
linkedin: '#2977c9',
Expand Down