Skip to content

Commit

Permalink
fix: some broken UI on 29
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <radialapps@gmail.com>
  • Loading branch information
pulsejet committed Sep 20, 2024
1 parent 05ca8e0 commit dc4c3c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/components/modal/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<NcModal
class="memories-modal"
ref="modal"
:name="t('memories', 'Modal')"
labelId="modal-title"
:size="size"
:outTransition="true"
:style="{ width: isSidebarShown ? `calc(100% - ${sidebarWidth}px)` : null }"
Expand All @@ -12,7 +12,9 @@
>
<div class="container" @keydown.stop="0">
<div class="head">
<span> <slot name="title"></slot> </span>
<span id="modal-title">
<slot name="title"></slot>
</span>
</div>

<slot></slot>
Expand Down
3 changes: 2 additions & 1 deletion src/components/viewer/Viewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1314,11 +1314,12 @@ export default defineComponent({
position: absolute;
top: 8px;
right: 50px;
--default-clickable-area: 44px;
:deep .button-vue--icon-only {
color: white;
background-color: transparent !important;
margin: 5px 2px; // NC 30
margin-right: 1px;
}
transition: opacity 0.2s ease-in-out;
Expand Down

0 comments on commit dc4c3c7

Please sign in to comment.