1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Update email link and button colours and sort apps in portal side bar

This commit is contained in:
Andrew Kingston 2023-10-31 13:58:59 +00:00
parent 3641482365
commit 7c1f71745e
3 changed files with 19 additions and 17 deletions

View file

@ -9,12 +9,18 @@
let searchString
let searching = false
$: filteredApps = $apps.filter(app => {
return (
!searchString ||
app.name.toLowerCase().includes(searchString.toLowerCase())
)
})
$: filteredApps = $apps
.filter(app => {
return (
!searchString ||
app.name.toLowerCase().includes(searchString.toLowerCase())
)
})
.sort((a, b) => {
const lowerA = a.name.toLowerCase()
const lowerB = b.name.toLowerCase()
return lowerA > lowerB ? 1 : -1
})
const startSearching = async () => {
searching = true

View file

@ -19,7 +19,7 @@
}
a {
color: #3869D4 !important;
color: #6E56FF !important;
}
a img {
@ -109,11 +109,11 @@
/* Buttons ------------------------------ */
.button {
background-color: #3869D4;
border-top: 10px solid #3869D4;
border-right: 18px solid #3869D4;
border-bottom: 10px solid #3869D4;
border-left: 18px solid #3869D4;
background-color: #6E56FF;
border-top: 10px solid #6E56FF;
border-right: 18px solid #6E56FF;
border-bottom: 10px solid #6E56FF;
border-left: 18px solid #6E56FF;
display: inline-block;
color: #FFF !important;
text-decoration: none !important;

View file

@ -16,15 +16,11 @@
cellspacing="0"
>
<img
width="32"
height="32"
style="margin-right:16px; vertical-align: middle;"
alt="Budibase Logo"
src="https://res.cloudinary.com/daog6scxm/image/upload/v1696515725/Branding/Assets/Symbol/RGB/Full%20Colour/Budibase_Symbol_RGB_FullColour_cbqvha_1_byv8fd.png"
src="https://res.cloudinary.com/daog6scxm/image/upload/v1696521007/Branding/Assets/Logo/RGB/Full%20Colour/Budibase_Logo_RGB_FullColour_Negative_e9yziz_1_u6oxzg.png"
/>
<strong style="vertical-align: middle; font-size: 1.1em">
Budibase
</strong>
</td>
</tr>
</tbody>