diff options
| author | bobzel <zzzman@gmail.com> | 2025-02-27 14:46:20 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-02-27 14:46:20 -0500 |
| commit | bcf3b005d55ec851374049f4c188d96ffc7a7c8b (patch) | |
| tree | 8f65a6350a71ecc222c859155a38d2debf0e519f /src/client/views/collections/CollectionCardDeckView.tsx | |
| parent | 5505010e14bede33a692a656515bd6ca106103f2 (diff) | |
prevent tagsview from appeqring in spreadsheet. set default fill color only if nothing is selected. place column divider at top of stacking/card views. move card view flashcard view to top left independent of margin settings.
Diffstat (limited to 'src/client/views/collections/CollectionCardDeckView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCardDeckView.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx index 94f85d429..756b37f99 100644 --- a/src/client/views/collections/CollectionCardDeckView.tsx +++ b/src/client/views/collections/CollectionCardDeckView.tsx @@ -540,11 +540,10 @@ export class CollectionCardView extends CollectionSubView() { height: `${100 / this.nativeScaling / fitContentScale}%`, width: `${100 / this.nativeScaling / fitContentScale}%`, transform: `scale(${this.nativeScaling * fitContentScale})`, - }}> - {this.flashCardUI(this.curDoc, this.docViewProps, this.answered)} - </div> + }}></div> </div> + {this.flashCardUI(this.curDoc, this.docViewProps, this.answered)} <div className="collectionCardView-cardSizeDragger" onPointerDown={this.cardSizerDown} |
