Skip to content

Commit 3ac98bb

Browse files
authored
Add relative positioning to history preview (#9557)
In the history page component, the `.history-view__preview` class was updated to include the `position: relative` CSS property. This change is necessary to ensure that the preview displays as intended within its container. - Improved layout handling by setting `position: relative`. - Ensures that child elements of the preview position correctly without breaking the layout flow.
1 parent 143c626 commit 3ac98bb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

apps/desktop/src/routes/[projectId]/history/+page.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@
344344
/* PREVIEW */
345345
.history-view__preview {
346346
display: flex;
347+
position: relative;
347348
flex: 1;
348349
flex-direction: column;
349350
overflow: hidden;

0 commit comments

Comments
 (0)