-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat[#276]: direct way of supporting team members
This includes: - Add support for GitHub Sponsors & External links for donations - Add dropdown support on the website (it has never been used, so this is something new) - New profile picture for Mirko so he looks younger 🔥 - Add fabricators tag for Gabs - Add many donation links to many team members after 20 hours of searching /j - Format code
- Loading branch information
1 parent
d2e9794
commit a5fb0bb
Showing
4 changed files
with
401 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.dropdown { | ||
--dropdown-bg-color: var(--card-bg-color); | ||
--dropdown-bg-dark: var(--card-bg-dark); | ||
--dropdown-color-dark: var(--card-color-dark); | ||
--dropdown-bg-light: var(--card-bg-light); | ||
--dropdown-color-light: var(--card-color-light); | ||
--dropdown-color: var(--card-color); | ||
--dropdown-hover-bg-color: var(--card-clickable-hover-bg-color); | ||
} | ||
|
||
.dropdown { | ||
box-shadow: var(--base-shadow); | ||
border-radius: 8px; | ||
padding: 15px; | ||
background-color: var(--dropdown-bg-color); | ||
display: flex; | ||
flex-direction: column; | ||
flex-wrap: wrap; | ||
gap: 10px; | ||
overflow: hidden; | ||
color: var(--dropdown-color); | ||
text-align: left; | ||
} | ||
|
||
.dropdown.dropdown--dark { | ||
background-color: var(--dropdown-bg-dark); | ||
color: var(--dropdown-color-dark); | ||
} | ||
|
||
.dropdown.dropdown--light { | ||
background-color: var(--dropdown-bg-light); | ||
color: var(--dropdown-color-light); | ||
} | ||
|
||
.dropdown-item { | ||
padding: 10px; | ||
border-radius: 4px; | ||
text-decoration: none; | ||
color: var(--dropdown-color); | ||
cursor: pointer; | ||
} | ||
|
||
.dropdown-item:hover { | ||
background-color: var(--dropdown-hover-bg-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.