diff options
-rw-r--r-- | deploy/assets/dash-pin-with-view.gif (renamed from src/client/views/collections/collectionFreeForm/assets/dash-pin-with-view.gif) | bin | 695946 -> 695946 bytes | |||
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx | 15 | ||||
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss | 22 | ||||
-rw-r--r-- | src/client/views/collections/collectionFreeForm/assets/link.png | bin | 8908 -> 0 bytes |
4 files changed, 32 insertions, 5 deletions
diff --git a/src/client/views/collections/collectionFreeForm/assets/dash-pin-with-view.gif b/deploy/assets/dash-pin-with-view.gif Binary files differindex b0896d5c7..b0896d5c7 100644 --- a/src/client/views/collections/collectionFreeForm/assets/dash-pin-with-view.gif +++ b/deploy/assets/dash-pin-with-view.gif diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx index ba9225a92..35833ab23 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx @@ -94,10 +94,15 @@ export class CollectionFreeFormInfoState extends ObservableReactComponent<Collec this.clearState(); } render() { - return <div className="infoUI"> - {/* <img src={this.State?.[StateMessageGIF]} alt='state message gif'></img> */} - <img src="./assets/link.png"></img> - {this.State?.[StateMessage]} - </div>; + return ( + <div className="infoUI"> + <div className="gif-container"> + <img className="gif" src="/assets/link.png" alt="state message gif"></img> + </div> + + {/* <img src={this.State?.[StateMessageGIF]} alt='state message gif'></img> */} + {/* <img src="./assets/link.png"></img> */} + {this.State?.[StateMessage]} + </div>) } } diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss index 418c518ad..9fbf5d628 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss @@ -276,4 +276,26 @@ margin: 15px; padding: 10px; + + .gif-container { + font-size: 15; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -o-user-select: none; + user-select: none; + + .gif { + background-color: transparent; + width: 25px; + height: 25px; + margin-right: 5px; + } + } + } + diff --git a/src/client/views/collections/collectionFreeForm/assets/link.png b/src/client/views/collections/collectionFreeForm/assets/link.png Binary files differdeleted file mode 100644 index 1e10fc658..000000000 --- a/src/client/views/collections/collectionFreeForm/assets/link.png +++ /dev/null |