Skip to content

Commit

Permalink
Merge pull request #357 from MagicLike/bookwyrm
Browse files Browse the repository at this point in the history
Added button for BookWyrm
  • Loading branch information
JulianPrieber authored Mar 10, 2023
2 parents 6e0dba1 + 647e004 commit 525245a
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 2 deletions.
1 change: 1 addition & 0 deletions config/button-names.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
'appstore' => 'App Store',
'apple-music' => 'Apple Music',
'apple-podcasts' => 'Apple Podcasts',
'bookwyrm' => 'BookWyrm',
'dev-to' => 'DEV',
'epic-games' => 'Epic Games',
'f-droid' => 'F-Droid',
Expand Down
7 changes: 5 additions & 2 deletions database/seeders/ButtonSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public function run()
[
'name' => 'goodreads'
],


[
'name' => 'instagram'
Expand Down Expand Up @@ -392,7 +391,11 @@ public function run()
],

[
'name' => 'icon'
'name' => 'icon'
],

[
'name' => 'bookwyrm'
],

];
Expand Down
13 changes: 13 additions & 0 deletions littlelink/css/brands.css
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,19 @@ button:hover,
filter: brightness(90%);
}

/* BookWyrm */
.button.button-bookwyrm {
color: #000000;
background-color: #ffffff;
border-style: solid;
border-color: #000000;
border-width: 1px;
}
.button.button-bookwyrm:hover,
.button.button-bookwyrm:focus {
filter: brightness(90%);
}

/* Briar */
.button.button-briar {
color: #FFFFFF;
Expand Down
Loading

0 comments on commit 525245a

Please sign in to comment.