mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-11 11:27:03 +00:00
Fix profile suggestions
This commit is contained in:
@@ -11,6 +11,7 @@
|
|||||||
* Add alerts via Anchor
|
* Add alerts via Anchor
|
||||||
* Fix confirm and reactions on mobile
|
* Fix confirm and reactions on mobile
|
||||||
* Add reply to chat on mobile
|
* Add reply to chat on mobile
|
||||||
|
* Fix profile suggestions
|
||||||
|
|
||||||
# 0.2.11
|
# 0.2.11
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ const config: CapacitorConfig = {
|
|||||||
plugins: {
|
plugins: {
|
||||||
SplashScreen: {
|
SplashScreen: {
|
||||||
androidSplashResourceName: "splash"
|
androidSplashResourceName: "splash"
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
// Use this for live reload https://capacitorjs.com/docs/guides/live-reload
|
// Use this for live reload https://capacitorjs.com/docs/guides/live-reload
|
||||||
// server: {
|
// server: {
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@import "@welshman/editor/index.css";
|
||||||
|
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
import "@welshman/editor/index.css"
|
|
||||||
|
|
||||||
import {mount} from "svelte"
|
import {mount} from "svelte"
|
||||||
import type {Writable} from "svelte/store"
|
import type {Writable} from "svelte/store"
|
||||||
import {get} from "svelte/store"
|
import {get} from "svelte/store"
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div transition:fly|local={{duration: 200}} class="tiptap-suggestions">
|
<div transition:fly|local={{duration: 200}} class="tiptap-suggestions">
|
||||||
<div class="tiptap-suggestions__content">
|
<div class="tiptap-suggestions__content max-h-[40vh]">
|
||||||
{#if $term && allowCreate && !items.includes($term)}
|
{#if $term && allowCreate && !items.includes($term)}
|
||||||
<button
|
<button
|
||||||
class="tiptap-suggestions__create"
|
class="tiptap-suggestions__create"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if !PLATFORM_RELAY}
|
{#if !PLATFORM_RELAY}
|
||||||
<div class="hero min-h-screen">
|
<div class="hero min-h-screen overflow-auto pb-8">
|
||||||
<div class="hero-content">
|
<div class="hero-content">
|
||||||
<div class="column content gap-4">
|
<div class="column content gap-4">
|
||||||
<h1 class="text-center text-5xl">Welcome to</h1>
|
<h1 class="text-center text-5xl">Welcome to</h1>
|
||||||
|
|||||||
Reference in New Issue
Block a user