1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix terminal window paddings (#6822)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-12-22 16:35:04 +03:00 committed by GitHub
parent da267a99f4
commit ba908c860d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 7 deletions

View File

@ -71,10 +71,6 @@
transition: flex-basis 25ms ease-in; transition: flex-basis 25ms ease-in;
background: var(--dockInfoBackground); background: var(--dockInfoBackground);
&.terminal {
background: var(--terminalBackground);
}
> *:not(.Spinner) { > *:not(.Spinner) {
position: absolute; position: absolute;
left: 0; left: 0;

View File

@ -10,7 +10,8 @@
flex: 1; flex: 1;
overflow: hidden; overflow: hidden;
left: var(--spacing) !important;
top: var(--spacing) !important; .terminal.xterm {
bottom: var(--spacing) !important; padding: calc(var(--padding) * 2);
}
} }