updated collections export styles

This commit is contained in:
Gani Georgiev
2024-02-24 17:18:06 +02:00
parent 20fba0f686
commit 6132fb4a03
37 changed files with 109 additions and 92 deletions
+18 -4
View File
@@ -37,9 +37,11 @@
}
.code-wrapper {
height: 100%;
code {
min-height: 100%;
}
width: 100%;
padding: var(--xsSpacing);
overflow: auto;
background: var(--baseAlt1Color);
font-family: var(--monospaceFontFamily);
}
}
@@ -48,5 +50,17 @@
width: 100%;
height: 550px;
align-items: stretch;
gap: 15px;
> * {
border-radius: 0;
border-left: 1px solid var(--baseAlt2Color);
}
> :first-child {
border-top-left-radius: var(--baseRadius);
border-bottom-left-radius: var(--baseRadius);
border-left: 0;
}
> :last-child {
border-top-right-radius: var(--baseRadius);
border-bottom-right-radius: var(--baseRadius);
}
}