This commit is contained in:
Oscar Plaisant
2024-09-20 21:31:23 +02:00
parent 2a56343d56
commit 62f0313af1
412 changed files with 64451 additions and 81085 deletions

View File

@@ -43,7 +43,7 @@
"singlelineCardSeparator": "::",
"singlelineReversedCardSeparator": ":::"
},
"buryDate": "2024-07-07",
"buryDate": "2024-09-20",
"buryList": [],
"historyDeck": ""
}

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{
"id": "obsidian-spaced-repetition",
"name": "Spaced Repetition",
"version": "1.12.4",
"version": "1.12.5",
"minAppVersion": "0.15.4",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"author": "Stephen Mwangi",

View File

@@ -1,8 +1,40 @@
.is-mobile #sr-modal {
--top-space: calc(var(--safe-area-inset-top) + var(--header-height) + var(--size-4-2));
width: 100vw !important;
height: calc(100vh - var(--top-space)) !important;
margin-top: var(--top-space);
@media only screen and (orientation: landscape) {
.is-mobile .sr-flashcard {
flex-direction: row;
}
.is-mobile .sr-header {
flex-direction: column;
flex: 0 1 0;
}
.is-mobile .sr-content {
flex: 1 0 0;
}
.is-mobile .sr-response {
flex-direction: column;
flex: 0 1 0;
}
.is-mobile .sr-controls {
flex-direction: column;
}
.is-mobile .sr-title {
display: none;
}
.is-mobile .sr-response-button {
writing-mode: vertical-lr;
}
}
#sr-modal {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#sr-modal .modal-title {