Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Flexible modal width for help modal on non-mobile
Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- committed Jun 19, 2023
commit 4dae22a6fcea13cb25ee997335fdcf5005373f42
4 changes: 3 additions & 1 deletion src/components/HelpModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,14 +227,16 @@ export default {
<style lang="scss" scoped>
:deep(.modal-wrapper) {
.modal-container {
width: max-content;
padding: 30px 40px 20px;
user-select: text;
}

// Remove padding-right on mobile, screen might not be wide enough
@media only screen and (max-width: 512px) {
.modal-container {
padding: 30px 0 20px 40px;
width: inherit;
padding: 10px 0;
}
}
}
Expand Down