Merge pull request #562 from DatFlowTS/bsky_button

added Bluesky button
This commit is contained in:
Julian Prieber 2023-09-13 13:48:44 +02:00 committed by GitHub
commit 9c55a33ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 0 deletions

View File

@ -254,6 +254,17 @@ button:hover,
filter: brightness(90%);
}
/* Bluesky */
.button.button-bluesky {
color: #000000;
background-color: #F3F9FF;
border: 1px solid #212121;
}
.button.button-bluesky:hover,
.button.button-bluesky:focus {
filter: brightness(90%);
}
/* Briar */
.button.button-briar {
color: #FFFFFF;

View File

@ -0,0 +1,14 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1432_8560)">
<path d="M20 0H4C1.79086 0 0 1.79086 0 4V20C0 22.2091 1.79086 24 4 24H20C22.2091 24 24 22.2091 24 20V4C24 1.79086 22.2091 0 20 0Z" fill="url(#paint0_linear_1432_8560)"/>
</g>
<defs>
<linearGradient id="paint0_linear_1432_8560" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#0066FF"/>
<stop offset="1" stop-color="#71C0FF"/>
</linearGradient>
<clipPath id="clip0_1432_8560">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 614 B

View File

@ -8,6 +8,7 @@ $buttonNames = array(
'apple-music' => 'Apple Music',
'apple-podcasts' => 'Apple Podcasts',
'bookwyrm' => 'BookWyrm',
'bluesky' => 'Bluesky',
'dev-to' => 'DEV',
'epic-games' => 'Epic Games',
'f-droid' => 'F-Droid',

View File

@ -434,6 +434,10 @@ class ButtonSeeder extends Seeder
'name' => 'furaffinity'
],
[
'name' => 'bluesky'
],
[
'name' => 'firefish'
],