- styles updated

This commit is contained in:
Pavel Laptev 2024-01-12 01:58:26 +01:00 committed by GitButler
parent 1523d5f8cf
commit 945157c8c5

View File

@ -102,6 +102,7 @@
} }
.right-side-wrapper { .right-side-wrapper {
position: relative;
overflow: hidden; overflow: hidden;
--splitview-back-color: var(--clr-core-pop-75); --splitview-back-color: var(--clr-core-pop-75);
display: flex; display: flex;
@ -112,6 +113,10 @@
} }
.right-side__header { .right-side__header {
position: absolute;
top: 0;
left: 0;
width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
@ -119,6 +124,10 @@
} }
.right-side__footer { .right-side__footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
display: flex; display: flex;
align-items: flex-end; align-items: flex-end;
justify-content: space-between; justify-content: space-between;
@ -165,23 +174,9 @@
justify-content: center; justify-content: center;
} }
.right-side__img_dark {
display: none;
}
/* global */ /* global */
:global(.dark .decorative-split-view .right-side-wrapper) { :global(.dark .decorative-split-view .right-side-wrapper) {
--splitview-back-color: var(--clr-core-pop-25); --splitview-back-color: var(--clr-core-pop-25);
} }
:global(.dark .decorative-split-view) {
& .right-side__img_dark {
display: block;
}
& .right-side__img_light {
display: none;
}
}
</style> </style>